Skip to content

Commit e86cd81

Browse files
committed
Merge branch 'master' into datepicker
Conflicts: demos/datepicker/alt-field.html demos/datepicker/animation.html demos/datepicker/buttonbar.html demos/datepicker/date-formats.html demos/datepicker/date-range.html demos/datepicker/default.html demos/datepicker/dropdown-month-year.html demos/datepicker/icon-trigger.html demos/datepicker/inline.html demos/datepicker/localization.html demos/datepicker/min-max.html demos/datepicker/multiple-calendars.html demos/datepicker/other-months.html demos/datepicker/show-week.html
2 parents 8b2e13c + 919d918 commit e86cd81

File tree

255 files changed

+61338
-62016
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

255 files changed

+61338
-62016
lines changed

.gitattributes

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
* text=auto
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# JS files must always use LF for tools to work
5+
*.js eol=lf

Gruntfile.js

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,13 @@ var
3131
"button",
3232
"datepicker",
3333
"dialog",
34+
"draggable",
3435
"menu",
3536
"progressbar",
3637
"resizable",
3738
"selectable",
3839
"selectmenu",
40+
"sortable",
3941
"slider",
4042
"spinner",
4143
"tabs",
@@ -160,7 +162,7 @@ grunt.initConfig({
160162
ui: [ "ui/*.js", "!ui/datepicker.js", "!ui/sortable.js", "!ui/resizable.js" ],
161163
// TODO enable this once we have a tool that can help with fixing formatting of existing files
162164
// tests: "tests/unit/**/*.js",
163-
grunt: "Gruntfile.js"
165+
grunt: [ "Gruntfile.js", "build/tasks/*.js" ]
164166
},
165167
uglify: minify,
166168
htmllint: {
@@ -213,6 +215,28 @@ grunt.initConfig({
213215
src: "build/**/*.js"
214216
},
215217
grunt: "Gruntfile.js"
218+
},
219+
220+
bowercopy: {
221+
options: {
222+
clean: true
223+
},
224+
qunit: {
225+
files: {
226+
"external": "qunit/qunit"
227+
}
228+
},
229+
mousewheel: {
230+
files: {
231+
"external": "jquery-mousewheel/jquery.mousewheel.js"
232+
}
233+
},
234+
jshint: {
235+
files: {
236+
"external": "jshint/dist/jshint.js"
237+
}
238+
},
239+
"jquery.js": "jquery/dist/jquery.js"
216240
}
217241
});
218242

bower.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88
"tests"
99
],
1010
"dependencies": {
11-
"jquery": ">=1.6"
11+
"jquery": ">=1.6 <1.11"
12+
},
13+
"devDependencies": {
14+
"jquery-mousewheel": "3.1.11",
15+
"jshint": "2.4.4",
16+
"qunit": "1.14.0"
1217
}
1318
}

build/tasks/testswarm.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ function submit( commit, runs, configFile, extra, done ) {
5151

5252
testswarm.createClient({
5353
url: config.swarmUrl,
54-
pollInterval: 10000,
55-
timeout: 1000 * 60 * 45
5654
})
5755
.addReporter( testswarm.reporters.cli )
5856
.auth({
@@ -63,7 +61,8 @@ function submit( commit, runs, configFile, extra, done ) {
6361
name: "Commit <a href='" + commitUrl + "'>" + commit.substr( 0, 10 ) + "</a>" + extra,
6462
runs: runs,
6563
runMax: config.runMax,
66-
browserSets: ["popular-ui"]
64+
browserSets: [ "popular-ui" ],
65+
timeout: 1000 * 60 * 30
6766
}, function( error, passed ) {
6867
if ( error ) {
6968
grunt.log.error( error );

demos/accordion/collapsible.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<title>jQuery UI Accordion - Collapse content</title>
66
<link rel="stylesheet" href="../../themes/base/all.css">
7-
<script src="../../jquery-1.10.2.js"></script>
7+
<script src="../../jquery.js"></script>
88
<script src="../../ui/core.js"></script>
99
<script src="../../ui/widget.js"></script>
1010
<script src="../../ui/accordion.js"></script>

demos/accordion/custom-icons.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<title>jQuery UI Accordion - Customize icons</title>
66
<link rel="stylesheet" href="../../themes/base/all.css">
7-
<script src="../../jquery-1.10.2.js"></script>
7+
<script src="../../jquery.js"></script>
88
<script src="../../ui/core.js"></script>
99
<script src="../../ui/widget.js"></script>
1010
<script src="../../ui/accordion.js"></script>

demos/accordion/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<title>jQuery UI Accordion - Default functionality</title>
66
<link rel="stylesheet" href="../../themes/base/all.css">
7-
<script src="../../jquery-1.10.2.js"></script>
7+
<script src="../../jquery.js"></script>
88
<script src="../../ui/core.js"></script>
99
<script src="../../ui/widget.js"></script>
1010
<script src="../../ui/accordion.js"></script>

demos/accordion/fillspace.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<title>jQuery UI Accordion - Fill space</title>
66
<link rel="stylesheet" href="../../themes/base/all.css">
7-
<script src="../../jquery-1.10.2.js"></script>
7+
<script src="../../jquery.js"></script>
88
<script src="../../ui/core.js"></script>
99
<script src="../../ui/widget.js"></script>
1010
<script src="../../ui/mouse.js"></script>

demos/accordion/hoverintent.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<title>jQuery UI Accordion - Open on hoverintent</title>
66
<link rel="stylesheet" href="../../themes/base/all.css">
7-
<script src="../../jquery-1.10.2.js"></script>
7+
<script src="../../jquery.js"></script>
88
<script src="../../ui/core.js"></script>
99
<script src="../../ui/widget.js"></script>
1010
<script src="../../ui/accordion.js"></script>

demos/accordion/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
56
<title>jQuery UI Accordion Demos</title>
67
</head>
78
<body>

0 commit comments

Comments
 (0)