]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Remove semicolons from #15425 because fat
authorChris Rebert <code@rebertia.com>
Tue, 30 Dec 2014 02:34:35 +0000 (18:34 -0800)
committerChris Rebert <code@rebertia.com>
Tue, 30 Dec 2014 02:34:35 +0000 (18:34 -0800)
js/tests/unit/popover.js

index 4b8b2a96bf7a6e79024791d3ae59e6d08b40075a..13ba93862e5bd8268f5fc199ca1993e09488697f 100644 (file)
@@ -221,10 +221,10 @@ $(function () {
   test('should detach popover content rather than removing it so that event handlers are left intact', function () {
     var $content = $('<div class="content-with-handler"><a class="btn btn-warning">Button with event handler</a></div>').appendTo('#qunit-fixture')
 
-    var handlerCalled = false;
+    var handlerCalled = false
     $('.content-with-handler .btn').click(function () {
       handlerCalled = true
-    });
+    })
 
     var $div = $('<div><a href="#">Show popover</a></div>')
       .appendTo('#qunit-fixture')
@@ -233,7 +233,7 @@ $(function () {
         trigger: 'manual',
         container: 'body',
         content: function () {
-          return $content;
+          return $content
         }
       })