Skip to content

Commit

Permalink
Remove semicolons from #15425 because fat
Browse files Browse the repository at this point in the history
  • Loading branch information
cvrebert committed Dec 30, 2014
1 parent 9dc3cf7 commit 32cb071
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/tests/unit/popover.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand All @@ -233,7 +233,7 @@ $(function () {
trigger: 'manual',
container: 'body',
content: function () {
return $content;
return $content
}
})

Expand Down

0 comments on commit 32cb071

Please sign in to comment.