Skip to content

Commit ebea3df

Browse files
committed
Merge branch 'master' of git://github.com/jquery/jquery-ui into fix-8740
2 parents 556559c + fe420c0 commit ebea3df

File tree

143 files changed

+3360
-3322
lines changed

Some content is hidden

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

143 files changed

+3360
-3322
lines changed

AUTHORS.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,3 +263,13 @@ Jacob McCutcheon <jacob.mccutcheon@gmail.com>
263263
Monika Piotrowicz <monika.piotrowicz@gmail.com>
264264
Imants Horsts <imants.horsts@inbox.lv>
265265
Eric Dahl <eric.c.dahl@gmail.com>
266+
Dave Stein <dave@behance.com>
267+
Dylan Barrell <dylan@barrell.com>
268+
Daniel DeGroff <djdegroff@gmail.com>
269+
Michael Wiencek <mwtuea@gmail.com>
270+
Thomas Meyer <meyertee@gmail.com>
271+
Ruslan Yakhyaev <ruslan@ruslan.io>
272+
Brian J. Dowling <bjd-dev@simplicity.net>
273+
Ben Higgins <ben@extrahop.com>
274+
Yermo <yml@yml.com>
275+
Patrick Stapleton <github@gdi2290.com>

Gruntfile.js

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -101,16 +101,7 @@ uiFiles.forEach(function( file ) {
101101
});
102102

103103
// grunt plugins
104-
grunt.loadNpmTasks( "grunt-contrib-jshint" );
105-
grunt.loadNpmTasks( "grunt-contrib-uglify" );
106-
grunt.loadNpmTasks( "grunt-contrib-concat" );
107-
grunt.loadNpmTasks( "grunt-contrib-qunit" );
108-
grunt.loadNpmTasks( "grunt-contrib-csslint" );
109-
grunt.loadNpmTasks( "grunt-jscs-checker" );
110-
grunt.loadNpmTasks( "grunt-html" );
111-
grunt.loadNpmTasks( "grunt-compare-size" );
112-
grunt.loadNpmTasks( "grunt-git-authors" );
113-
grunt.loadNpmTasks( "grunt-esformatter" );
104+
require( "load-grunt-tasks" )( grunt );
114105
// local testswarm and build tasks
115106
grunt.loadTasks( "build/tasks" );
116107

@@ -166,7 +157,7 @@ grunt.initConfig({
166157
},
167158
jscs: {
168159
// datepicker, sortable, resizable and draggable are getting rewritten, ignore until that's done
169-
ui: [ "ui/*.js", "!ui/datepicker.js", "!ui/sortable.js", "!ui/resizable.js", "!ui/draggable.js" ],
160+
ui: [ "ui/*.js", "!ui/datepicker.js", "!ui/sortable.js", "!ui/resizable.js" ],
170161
// TODO enable this once we have a tool that can help with fixing formatting of existing files
171162
// tests: "tests/unit/**/*.js",
172163
grunt: "Gruntfile.js"
@@ -180,10 +171,14 @@ grunt.initConfig({
180171
},
181172
qunit: {
182173
files: expandFiles( "tests/unit/**/*.html" ).filter(function( file ) {
183-
// disabling everything that doesn't (quite) work with PhantomJS for now
184174
// TODO except for all|index|test, try to include more as we go
185-
return !( /(all|index|test|dialog|tooltip)\.html$/ ).test( file );
186-
})
175+
return !( /(all|index|test)\.html$/ ).test( file );
176+
}),
177+
options: {
178+
page: {
179+
viewportSize: { width: 700, height: 500 }
180+
}
181+
}
187182
},
188183
jshint: {
189184
options: {

bower.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "jquery-ui",
3+
"ignore": [
4+
"**/.*",
5+
"build",
6+
"demos",
7+
"external",
8+
"tests"
9+
],
10+
"dependencies": {
11+
"jquery": ">=1.6"
12+
}
13+
}

build/tasks/build.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ grunt.registerTask( "manifest", "Generate jquery.json manifest files", function(
3232

3333
Object.keys( base ).forEach(function( type ) {
3434
var baseManifest = base[ type ],
35-
plugins = grunt.file.readJSON( "build/" + type + ".json" );
35+
plugins = grunt.file.readJSON( "build/" + type + ".json" ),
36+
bower = grunt.file.readJSON( "bower.json" );
3637

3738
Object.keys( plugins ).forEach(function( plugin ) {
3839
var manifest,
@@ -62,9 +63,7 @@ grunt.registerTask( "manifest", "Generate jquery.json manifest files", function(
6263
docs: data.docs || replace( baseManifest.docs ||
6364
"http://api.jqueryui.com/{plugin}/" ),
6465
download: "http://jqueryui.com/download/",
65-
dependencies: {
66-
jquery: ">=1.6"
67-
},
66+
dependencies: bower.dependencies,
6867
// custom
6968
category: data.category || type
7069
};

build/tasks/testswarm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function submit( commit, runs, configFile, extra, done ) {
6363
name: "Commit <a href='" + commitUrl + "'>" + commit.substr( 0, 10 ) + "</a>" + extra,
6464
runs: runs,
6565
runMax: config.runMax,
66-
browserSets: ["popular-no-ie6"]
66+
browserSets: ["popular-ui"]
6767
}, function( error, passed ) {
6868
if ( error ) {
6969
grunt.log.error( error );

demos/tabs/bottom.html

Lines changed: 0 additions & 58 deletions
This file was deleted.

demos/tabs/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<li><a href="collapsible.html">Collapse content</a></li>
1414
<li><a href="sortable.html">Sortable</a></li>
1515
<li><a href="manipulation.html">Simple manipulation</a></li>
16-
<li><a href="bottom.html">Tabs below content</a></li>
1716
</ul>
1817

1918
</body>

demos/tooltip/custom-style.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,8 @@
6666
height: 25px;
6767
box-shadow: 6px 5px 9px -9px black;
6868
-webkit-transform: rotate(45deg);
69-
-moz-transform: rotate(45deg);
7069
-ms-transform: rotate(45deg);
71-
-o-transform: rotate(45deg);
72-
tranform: rotate(45deg);
70+
transform: rotate(45deg);
7371
}
7472
.arrow.top:after {
7573
bottom: -20px;

0 commit comments

Comments
 (0)