Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZlatan Vasović <legospace9876@gmail.com>2014-02-17 23:56:46 +0400
committerZlatan Vasović <legospace9876@gmail.com>2014-02-17 23:56:46 +0400
commita06e15dd368ea2b24b911c7f77892a2b19a58f98 (patch)
treef354341c30261e6efeb7b699cb247ccb85da2215 /js/tests/unit/tab.js
parent00b3b8b0b8d5515b6eb1ea7064f6d88175306ed9 (diff)
Remove semicolons from JS tests
Diffstat (limited to 'js/tests/unit/tab.js')
-rw-r--r--js/tests/unit/tab.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/js/tests/unit/tab.js b/js/tests/unit/tab.js
index 60e46364dc..08f6e3cfdf 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')
})