Commit 32cb0715 authored by Chris Rebert's avatar Chris Rebert

Remove semicolons from #15425 because fat

parent 9dc3cf7f
...@@ -221,10 +221,10 @@ $(function () { ...@@ -221,10 +221,10 @@ $(function () {
test('should detach popover content rather than removing it so that event handlers are left intact', 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 $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 () { $('.content-with-handler .btn').click(function () {
handlerCalled = true handlerCalled = true
}); })
var $div = $('<div><a href="#">Show popover</a></div>') var $div = $('<div><a href="#">Show popover</a></div>')
.appendTo('#qunit-fixture') .appendTo('#qunit-fixture')
...@@ -233,7 +233,7 @@ $(function () { ...@@ -233,7 +233,7 @@ $(function () {
trigger: 'manual', trigger: 'manual',
container: 'body', container: 'body',
content: function () { content: function () {
return $content; return $content
} }
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment