Core: Deprecate .enableSelection() and .disableSelection(). Fixes #7755 - Core: Deprecate .disableSelection() and .enableSelection().

This commit is contained in:
Scott González 2012-08-23 07:30:29 -04:00
parent b9ef00f0c7
commit c343598d2a

25
ui/jquery.ui.core.js vendored
View File

@ -125,17 +125,6 @@ $.fn.extend({
$( this ).removeAttr( "id" );
}
});
},
disableSelection: function() {
return this.bind( ( $.support.selectstart ? "selectstart" : "mousedown" ) +
".ui-disableSelection", function( event ) {
event.preventDefault();
});
},
enableSelection: function() {
return this.unbind( ".ui-disableSelection" );
}
});
@ -268,6 +257,20 @@ $(function() {
// deprecated
$.fn.extend({
disableSelection: function() {
return this.bind( ( $.support.selectstart ? "selectstart" : "mousedown" ) +
".ui-disableSelection", function( event ) {
event.preventDefault();
});
},
enableSelection: function() {
return this.unbind( ".ui-disableSelection" );
}
});
$.extend( $.ui, {
// $.ui.plugin is deprecated. Use the proxy pattern instead.
plugin: {