diff options
| author | Zlatan Vasović <[email protected]> | 2014-02-17 20:56:46 +0100 |
|---|---|---|
| committer | Zlatan Vasović <[email protected]> | 2014-02-17 20:56:46 +0100 |
| commit | a06e15dd368ea2b24b911c7f77892a2b19a58f98 (patch) | |
| tree | f354341c30261e6efeb7b699cb247ccb85da2215 /js/tests/unit/tab.js | |
| parent | 00b3b8b0b8d5515b6eb1ea7064f6d88175306ed9 (diff) | |
| download | bootstrap-a06e15dd368ea2b24b911c7f77892a2b19a58f98.tar.xz bootstrap-a06e15dd368ea2b24b911c7f77892a2b19a58f98.zip | |
Remove semicolons from JS tests
Diffstat (limited to 'js/tests/unit/tab.js')
| -rw-r--r-- | js/tests/unit/tab.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/js/tests/unit/tab.js b/js/tests/unit/tab.js index 60e46364d..08f6e3cfd 100644 --- a/js/tests/unit/tab.js +++ b/js/tests/unit/tab.js @@ -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') }) |
