diff options
| author | Mark Otto <[email protected]> | 2013-12-18 13:06:47 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-12-18 13:06:47 -0800 |
| commit | 5bba8744679ddead8673c003997410c71fc47000 (patch) | |
| tree | 7cb520f428a788652871240a19a9fcc401ecf9f6 /js/tests/unit/button.js | |
| parent | 6315043b1c11c6391f155e0c7299783a13cfee74 (diff) | |
| parent | 3f577ab86c4e07493d5d24f5fdd3dba30c199400 (diff) | |
| download | bootstrap-5bba8744679ddead8673c003997410c71fc47000.tar.xz bootstrap-5bba8744679ddead8673c003997410c71fc47000.zip | |
Merge branch 'master' into docs_derp
Diffstat (limited to 'js/tests/unit/button.js')
| -rw-r--r-- | js/tests/unit/button.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/js/tests/unit/button.js b/js/tests/unit/button.js index 45397aeff..104e8d857 100644 --- a/js/tests/unit/button.js +++ b/js/tests/unit/button.js @@ -59,8 +59,8 @@ $(function () { }) test('should toggle active when btn children are clicked', function () { - var btn = $('<button class="btn" data-toggle="button">mdo</button>') - , inner = $('<i></i>') + var btn = $('<button class="btn" data-toggle="button">mdo</button>'), + inner = $('<i></i>') btn .append(inner) .appendTo($('#qunit-fixture')) @@ -70,9 +70,9 @@ $(function () { }) test('should toggle active when btn children are clicked within btn-group', function () { - var btngroup = $('<div class="btn-group" data-toggle="buttons"></div>') - , btn = $('<button class="btn">fat</button>') - , inner = $('<i></i>') + var btngroup = $('<div class="btn-group" data-toggle="buttons"></div>'), + btn = $('<button class="btn">fat</button>'), + inner = $('<i></i>') btngroup .append(btn.append(inner)) .appendTo($('#qunit-fixture')) |
