From c343598d2a21712d33895f21468411cef23ac687 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 23 Aug 2012 07:30:29 -0400 Subject: [PATCH] Core: Deprecate .enableSelection() and .disableSelection(). Fixes #7755 - Core: Deprecate .disableSelection() and .enableSelection(). --- ui/jquery.ui.core.js | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/ui/jquery.ui.core.js b/ui/jquery.ui.core.js index 0e33f11ed..d37698422 100644 --- a/ui/jquery.ui.core.js +++ b/ui/jquery.ui.core.js @@ -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: { -- 2.39.5