File tree Expand file tree Collapse file tree 5 files changed +0
-187
lines changed Expand file tree Collapse file tree 5 files changed +0
-187
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ var versions = {
15
15
"Autocomplete" : "autocomplete/autocomplete.html" ,
16
16
"Button" : "button/button.html" ,
17
17
"Core" : "core/core.html" ,
18
- "Core_deprecated" : "core/core_deprecated.html" ,
19
18
"Datepicker" : "datepicker/datepicker.html" ,
20
19
"Dialog" : "dialog/dialog.html" ,
21
20
"Draggable" : "draggable/draggable.html" ,
Original file line number Diff line number Diff line change 20
20
"autocomplete/autocomplete.html" ,
21
21
"button/button.html" ,
22
22
"core/core.html" ,
23
- "core/core_deprecated.html" ,
24
23
"datepicker/datepicker.html" ,
25
24
"dialog/dialog.html" ,
26
25
"draggable/draggable.html" ,
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -223,35 +223,6 @@ $.fn.extend({
223
223
224
224
enableSelection : function ( ) {
225
225
return this . unbind ( ".ui-disableSelection" ) ;
226
- } ,
227
-
228
- zIndex : function ( zIndex ) {
229
- if ( zIndex !== undefined ) {
230
- return this . css ( "zIndex" , zIndex ) ;
231
- }
232
-
233
- if ( this . length ) {
234
- var elem = $ ( this [ 0 ] ) , position , value ;
235
- while ( elem . length && elem [ 0 ] !== document ) {
236
- // Ignore z-index if position is set to a value where z-index is ignored by the browser
237
- // This makes behavior of this function consistent across browsers
238
- // WebKit always returns auto if the element is positioned
239
- position = elem . css ( "position" ) ;
240
- if ( position === "absolute" || position === "relative" || position === "fixed" ) {
241
- // IE returns 0 when zIndex is not specified
242
- // other browsers return a string
243
- // we ignore the case of nested elements with an explicit value of 0
244
- // <div style="z-index: -10;"><div style="z-index: 0;"></div></div>
245
- value = parseInt ( elem . css ( "zIndex" ) , 10 ) ;
246
- if ( ! isNaN ( value ) && value !== 0 ) {
247
- return value ;
248
- }
249
- }
250
- elem = elem . parent ( ) ;
251
- }
252
- }
253
-
254
- return 0 ;
255
226
}
256
227
} ) ;
257
228
You can’t perform that action at this time.
0 commit comments