Fixed two cases where []. was used instead of Array.prototype. (Bug #1427)

This commit is contained in:
John Resig 2007-08-20 07:08:01 +00:00
parent 05fb8eaa10
commit bd78d4f65d
2 changed files with 2 additions and 2 deletions

View 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 ) {

View 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;
},