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:
authorXhmikosR <xhmikosr@users.sourceforge.net>2013-09-18 20:50:02 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2013-12-08 14:44:14 +0400
commiteca8ff380388c1187bc2c86e0ae7fa80aa33111e (patch)
tree1169002b77366007abd0be9efff9bf4b85a5b894 /js/tests/unit/tab.js
parented63dfd8d301debf35bc93d155dff4527c94388d (diff)
Use single quotes consistently.
Diffstat (limited to 'js/tests/unit/tab.js')
-rw-r--r--js/tests/unit/tab.js32
1 files changed, 16 insertions, 16 deletions
diff --git a/js/tests/unit/tab.js b/js/tests/unit/tab.js
index 8122628129..6da7dc9a44 100644
--- a/js/tests/unit/tab.js
+++ b/js/tests/unit/tab.js
@@ -1,55 +1,55 @@
$(function () {
- module("tabs")
+ module('tabs')
- test("should provide no conflict", function () {
+ test('should provide no conflict', function () {
var tab = $.fn.tab.noConflict()
ok(!$.fn.tab, 'tab was set back to undefined (org value)')
$.fn.tab = tab
})
- test("should be defined on jquery object", function () {
+ test('should be defined on jquery object', function () {
ok($(document.body).tab, 'tabs method is defined')
})
- test("should return element", function () {
+ test('should return element', function () {
ok($(document.body).tab()[0] == document.body, 'document.body returned')
})
- test("should activate element by tab id", function () {
+ test('should activate element by tab id', function () {
var tabsHTML =
'<ul class="tabs">'
+ '<li><a href="#home">Home</a></li>'
+ '<li><a href="#profile">Profile</a></li>'
+ '</ul>'
- $('<ul><li id="home"></li><li id="profile"></li></ul>').appendTo("#qunit-fixture")
+ $('<ul><li id="home"></li><li id="profile"></li></ul>').appendTo('#qunit-fixture')
$(tabsHTML).find('li:last a').tab('show')
- equal($("#qunit-fixture").find('.active').attr('id'), "profile")
+ equal($('#qunit-fixture').find('.active').attr('id'), 'profile')
$(tabsHTML).find('li:first a').tab('show')
- equal($("#qunit-fixture").find('.active').attr('id'), "home")
+ equal($('#qunit-fixture').find('.active').attr('id'), 'home')
})
- test("should activate element by tab id", function () {
+ test('should activate element by tab id', function () {
var pillsHTML =
'<ul class="pills">'
+ '<li><a href="#home">Home</a></li>'
+ '<li><a href="#profile">Profile</a></li>'
+ '</ul>'
- $('<ul><li id="home"></li><li id="profile"></li></ul>').appendTo("#qunit-fixture")
+ $('<ul><li id="home"></li><li id="profile"></li></ul>').appendTo('#qunit-fixture')
$(pillsHTML).find('li:last a').tab('show')
- equal($("#qunit-fixture").find('.active').attr('id'), "profile")
+ equal($('#qunit-fixture').find('.active').attr('id'), 'profile')
$(pillsHTML).find('li:first a').tab('show')
- equal($("#qunit-fixture").find('.active').attr('id'), "home")
+ equal($('#qunit-fixture').find('.active').attr('id'), 'home')
})
- test("should not fire closed when close is prevented", function () {
+ test('should not fire closed when close is prevented', function () {
$.support.transition = false
stop();
$('<div class="tab"/>')
@@ -64,7 +64,7 @@ $(function () {
.tab('show')
})
- test("show and shown events should reference correct relatedTarget", function () {
+ test('show and shown events should reference correct relatedTarget', function () {
var dropHTML =
'<ul class="drop">'
+ '<li class="dropdown"><a data-toggle="dropdown" href="#">1</a>'
@@ -77,9 +77,9 @@ $(function () {
$(dropHTML).find('ul>li:first a').tab('show').end()
.find('ul>li:last a').on('show', function (event) {
- equal(event.relatedTarget.hash, "#1-1")
+ equal(event.relatedTarget.hash, '#1-1')
}).on('shown', function (event) {
- equal(event.relatedTarget.hash, "#1-1")
+ equal(event.relatedTarget.hash, '#1-1')
}).tab('show')
})