-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
98 lines (90 loc) · 3.58 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en" class="fuelux">
<head>
<meta charset="utf-8">
<title>Fuel UX 3</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="bower_components/bootstrap/dist/css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="bower_components/fuelux/dist/css/fuelux.css" rel="stylesheet" type="text/css">
<!-- allows for visual check of compiled LESS for debugging/testing purposes. Uncomment this, and comment out client-side LESS compilation code below to use this -->
<!--<link href="dist/css/fuelux.css" rel="stylesheet" type="text/css">-->
<!--<link href="dist/css/fuelux.min.css" rel="stylesheet" type="text/css">-->
<link href="index.css" rel="stylesheet" type="text/css">
<script src="bower_components/requirejs/require.js"></script>
<script type="text/javascript">
(function () {
requirejs.config({
config: {
moment: {
noGlobal: true
}
},
paths: {
jquery: 'bower_components/jquery/jquery',
underscore: 'bower_components/underscore/underscore',
bootstrap: 'bower_components/bootstrap/dist/js/bootstrap'
},
shim: {
'bootstrap': {
deps: ['jquery'],
exports: 'bootstrap'
}
}
});
})();
require(['index'], function($){ });
</script>
</head>
<body>
<header class="navbar navbar-default navbar-static-top" id="top" role="banner">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle collapsed" type="button" data-toggle="collapse" data-target=".bs-navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="./index.html" class="navbar-brand">FuelUX 2&3</a>
</div>
<nav class="collapse navbar-collapse bs-navbar-collapse">
<ul class="nav navbar-nav">
<li>
<a href="./noConflict.html">No Conflict</a>
</li>
<li>
<a href="./constructor.html">Constructor Modification</a>
</li>
<li>
<a href="./iframe.html">Isolation</a>
</li>
</ul>
</nav>
</div>
</header>
<div class="tt-banner">
<div class="container" style="padding: 20px 0;">
<h1>Fuel UX V2 and V3 Playing Nice</h1>
<p>Migration from fuel UX V2 to V3 can be a long process. Migration from one to the other could involve both multiple versions of the same library cohabitating. This site contains several alternatives for this possibility. </p>
</div>
</div>
<div class="container" style="margin-bottom: 40px;">
<div class="row">
<h1 class="page-header">No Conflict <span style="font-size:16px;">Method</span></h1>
<p><a href="./noConflict.html">This</a> option involves the developer manually calling the <code>noConflict</code> method contained alongside the constructor for each FuelUX control</p>
</div>
<div class="row">
<h1 class="page-header">Constructor Modification <span style="font-size:16px;">At the Library Level</span></h1>
<p>If <a href="./constructor.html">this</a> option is chosen. A special version of Fuel UX V3 will have to be used and controls will have to be instantiated without jquery convenience methods.</p>
</div>
<div class="row">
<h1 class="page-header">Isolate <span style="font-size:16px;">Controls/Elements within iframes</span></h1>
<p><a href="./iframe.html">This</a> option could be used with larger elements to isolate the context of Fuel UX/Bootstrap V2.</p>
</div>
</div>
<footer>
<div class="container">
<p>Created as a POC for furthering adoption of the latest version of fuelux</p>
</div>
</footer>
</body>