]> source.dussan.org Git - jquery-ui.git/commitdiff
Widget: Removed commented out code.
authorScott González <scott.gonzalez@gmail.com>
Fri, 14 Jan 2011 00:27:22 +0000 (19:27 -0500)
committerScott González <scott.gonzalez@gmail.com>
Fri, 14 Jan 2011 00:27:22 +0000 (19:27 -0500)
ui/jquery.ui.widget.js

index 013d0aa6bb6281bd09acac0a9bed3b5ee732fa67..a9538c51c655a9962ad56a89154d60b6498a271f 100644 (file)
@@ -45,11 +45,6 @@ $.widget = function( name, base, prototype ) {
        // we need to make the options hash a property directly on the new instance
        // otherwise we'll modify the options hash on the prototype that we're
        // inheriting from
-//     $.each( basePrototype, function( key, val ) {
-//             if ( $.isPlainObject(val) ) {
-//                     basePrototype[ key ] = $.extend( {}, val );
-//             }
-//     });
        basePrototype.options = $.extend( true, {}, basePrototype.options );
        $[ namespace ][ name ].prototype = $.extend( true, basePrototype, {
                namespace: namespace,