2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-08 17:22:31 +03:00

Remove semicolons from JS tests

This commit is contained in:
Zlatan Vasović
2014-02-17 20:56:46 +01:00
parent 00b3b8b0b8
commit a06e15dd36
4 changed files with 45 additions and 45 deletions
+5 -5
View File
@@ -49,15 +49,15 @@ $(function () {
test('should not fire closed when close is prevented', function () {
$.support.transition = false
stop();
stop()
$('<div class="tab"/>')
.on('show.bs.tab', function (e) {
e.preventDefault();
ok(true);
start();
e.preventDefault()
ok(true)
start()
})
.on('shown.bs.tab', function () {
ok(false);
ok(false)
})
.tab('show')
})