@@ -53,23 +53,16 @@ Libraries are downloaded with Bower using the `bower install` command. To instal
53
53
│ │ └── src
54
54
│ └── jquery-ui
55
55
│ ├── themes
56
- │ │ ├── base
56
+ │ │ ├── smoothness
57
57
│ │ │ ├── jquery-ui.css
58
- │ │ │ ├── accordion.css
59
- │ │ │ ├── ...
60
- │ │ │ └── minified
61
- │ │ │ ├── jquery-ui.min.css
62
- │ │ │ ├── accordion.min.css
63
- │ │ │ └── ...
58
+ │ │ │ └── jquery-ui.min.css
64
59
│ │ └── [The rest of jQuery UI's themes]
65
- │ └── ui
66
- │ ├── jquery-ui.js
67
- │ ├── accordion.js
68
- │ ├── ...
69
- │ └── minified
70
- │ ├── jquery-ui.min.js
71
- │ ├── accordion.min.js
72
- │ └── ...
60
+ │ ├── ui
61
+ │ │ ├── accordion.js
62
+ │ │ ├── autocomplete.js
63
+ │ │ └── ...
64
+ │ ├── jquery-ui.js
65
+ │ └── jquery-ui.min.js
73
66
└── index.html
74
67
</pre >
75
68
@@ -89,10 +82,10 @@ We have a few different options for using the files downloaded with Bower. The e
89
82
<head>
90
83
<meta charset="utf-8">
91
84
<title>jQuery Projects</title>
92
- <link rel="stylesheet" href="bower_components/jquery-ui/themes/base /jquery-ui.css">
85
+ <link rel="stylesheet" href="bower_components/jquery-ui/themes/smoothness /jquery-ui.min .css">
93
86
</head>
94
87
<body>
95
-
88
+
96
89
<div id="projects">
97
90
<h3>jQuery Core</h3>
98
91
<p>jQuery is a fast, small, and feature-rich JavaScript library...</p>
@@ -101,13 +94,13 @@ We have a few different options for using the files downloaded with Bower. The e
101
94
<h3>jQuery Mobile</h3>
102
95
<p>jQuery Mobile is a HTML5-based user interface system...</p>
103
96
</div>
104
-
97
+
105
98
<script src="bower_components/jquery/dist/jquery.min.js"></script>
106
- <script src="bower_components/jquery-ui/ui/minified/ jquery-ui.min.js"></script>
99
+ <script src="bower_components/jquery-ui/jquery-ui.min.js"></script>
107
100
<script>
108
101
$( "#projects" ).accordion();
109
102
</script>
110
-
103
+
111
104
</body>
112
105
</html>
113
106
```
@@ -122,9 +115,7 @@ Because Bower also downloaded jQuery UI's individual source files, we can altern
122
115
<head>
123
116
<meta charset="utf-8">
124
117
<title>jQuery Projects</title>
125
- <link rel="stylesheet" href="bower_components/jquery-ui/themes/base/core.css">
126
- <link rel="stylesheet" href="bower_components/jquery-ui/themes/base/theme.css">
127
- <link rel="stylesheet" href="bower_components/jquery-ui/themes/base/accordion.css">
118
+ <link rel="stylesheet" href="bower_components/jquery-ui/themes/smoothness/jquery-ui.min.css">
128
119
</head>
129
120
<body>
130
121
0 commit comments