diff options
author | Scott González <scott.gonzalez@gmail.com> | 2013-03-15 06:40:51 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2013-03-15 06:41:06 -0400 |
commit | 0cc40d799ffdf7aa978f910b890915ee6ad7a2b8 (patch) | |
tree | 1b98f4f9c5f0afec75796e3fc6f6f9405e8c1a11 /Gruntfile.js | |
parent | 4484c52a4d29ea4da53446ddea9f85b3f1231b06 (diff) | |
download | jquery-ui-0cc40d799ffdf7aa978f910b890915ee6ad7a2b8.tar.gz jquery-ui-0cc40d799ffdf7aa978f910b890915ee6ad7a2b8.zip |
Dialog: Removed deprecated position handling. Fixes #8825 - Dialog: Remove array and string notations for position option.
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index ff64f0c0d..05f599dd5 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -318,7 +318,7 @@ grunt.initConfig({ files: expandFiles( "tests/unit/**/*.html" ).filter(function( file ) { // disabling everything that doesn't (quite) work with PhantomJS for now // TODO except for all|index|test, try to include more as we go - return !( /(all|index|test|dialog|dialog_deprecated|tabs|tooltip)\.html$/ ).test( file ); + return !( /(all|index|test|dialog|tabs|tooltip)\.html$/ ).test( file ); }) }, jshint: { |