Skip to content

Commit

Permalink
Add missing commas to event.html test, this fixes affected tests on IE
Browse files Browse the repository at this point in the history
  • Loading branch information
madrobby committed Dec 5, 2013
1 parent b63783e commit 25569a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/event.html
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ <h1>Zepto Event unit tests</h1>
},

testFalseLiteralAsCallbackForDelegation: function(t){
var span = $('<span>').appendTo(this.el)
var span = $('<span>').appendTo(this.el),
event = $.Event('click')

this.el.on('click', 'span', false)
Expand All @@ -417,7 +417,7 @@ <h1>Zepto Event unit tests</h1>
},

testFalseLiteralAsCallbackForDelegationWithDataArgument: function(t){
var span = $('<span>').appendTo(this.el)
var span = $('<span>').appendTo(this.el),
event = $.Event('click')

this.el.on('click', 'span', null, false)
Expand Down

0 comments on commit 25569a5

Please sign in to comment.