Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add missing commas to event.html test, this fixes affected tests on IE
  • 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
Expand Up @@ -406,7 +406,7 @@ <h1>Zepto Event unit tests</h1>
}, },


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


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


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


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

0 comments on commit 25569a5

Please sign in to comment.