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
+4 -4
View File
@@ -33,12 +33,12 @@ $(function () {
stop()
$('<div class="collapse"/>')
.on('show.bs.collapse', function (e) {
e.preventDefault();
ok(true);
start();
e.preventDefault()
ok(true)
start()
})
.on('shown.bs.collapse', function () {
ok(false);
ok(false)
})
.collapse('show')
})