Fixed two cases where []. was used instead of Array.prototype. (Bug #1427)
authorJohn Resig <jeresig@gmail.com>
Mon, 20 Aug 2007 07:08:01 +0000 (07:08 +0000)
committerJohn Resig <jeresig@gmail.com>
Mon, 20 Aug 2007 07:08:01 +0000 (07:08 +0000)
src/event/event.js
src/jquery/jquery.js

index 59fff51..cbad528 100644 (file)
@@ -161,7 +161,7 @@ jQuery.event = {
                // Empty object is for triggered events with no data
                event = jQuery.event.fix( event || window.event || {} ); 
 
-               var c = this.$events && this.$events[event.type], args = [].slice.call( arguments, 1 );
+               var c = this.$events && this.$events[event.type], args = Array.prototype.slice.call( arguments, 1 );
                args.unshift( event );
 
                for ( var j in c ) {
index 76b08ed..797280e 100644 (file)
@@ -301,7 +301,7 @@ jQuery.fn = jQuery.prototype = {
         */
        setArray: function( a ) {
                this.length = 0;
-               [].push.apply( this, a );
+               Array.prototype.push.apply( this, a );
                return this;
        },