aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2014-12-29 18:34:35 -0800
committerChris Rebert <[email protected]>2014-12-29 18:34:35 -0800
commit32cb0715949e5ab20716121234d858e51f3ff386 (patch)
tree7287c9acf75941aa51172694ffc4d24298c04b43
parent9dc3cf7f19f8b24367e0db005e2bc3ba8a39fd96 (diff)
downloadbootstrap-32cb0715949e5ab20716121234d858e51f3ff386.tar.xz
bootstrap-32cb0715949e5ab20716121234d858e51f3ff386.zip
Remove semicolons from #15425 because fat
-rw-r--r--js/tests/unit/popover.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/tests/unit/popover.js b/js/tests/unit/popover.js
index 4b8b2a96b..13ba93862 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 = $('<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
}
})