From: Chris Rebert Date: Tue, 30 Dec 2014 02:34:35 +0000 (-0800) Subject: Remove semicolons from #15425 because fat X-Git-Tag: v3.3.2~5^2~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=32cb0715949e5ab20716121234d858e51f3ff386;p=thirdparty%2Fbootstrap.git Remove semicolons from #15425 because fat --- diff --git a/js/tests/unit/popover.js b/js/tests/unit/popover.js index 4b8b2a96bf..13ba93862e 100644 --- a/js/tests/unit/popover.js +++ b/js/tests/unit/popover.js @@ -221,10 +221,10 @@ $(function () { test('should detach popover content rather than removing it so that event handlers are left intact', function () { var $content = $('
Button with event handler
').appendTo('#qunit-fixture') - var handlerCalled = false; + var handlerCalled = false $('.content-with-handler .btn').click(function () { handlerCalled = true - }); + }) var $div = $('
Show popover
') .appendTo('#qunit-fixture') @@ -233,7 +233,7 @@ $(function () { trigger: 'manual', container: 'body', content: function () { - return $content; + return $content } })