From 25569a59ade65872b36ee81896380ac7c0e38d5f Mon Sep 17 00:00:00 2001 From: Thomas Fuchs Date: Thu, 5 Dec 2013 08:35:05 -0500 Subject: [PATCH] Add missing commas to event.html test, this fixes affected tests on IE --- test/event.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/event.html b/test/event.html index 69b221949..3db7372cc 100644 --- a/test/event.html +++ b/test/event.html @@ -406,7 +406,7 @@

Zepto Event unit tests

}, testFalseLiteralAsCallbackForDelegation: function(t){ - var span = $('').appendTo(this.el) + var span = $('').appendTo(this.el), event = $.Event('click') this.el.on('click', 'span', false) @@ -417,7 +417,7 @@

Zepto Event unit tests

}, testFalseLiteralAsCallbackForDelegationWithDataArgument: function(t){ - var span = $('').appendTo(this.el) + var span = $('').appendTo(this.el), event = $.Event('click') this.el.on('click', 'span', null, false)