diff options
| author | Mark Otto <[email protected]> | 2013-12-18 13:01:43 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-12-18 13:01:43 -0800 |
| commit | 3f577ab86c4e07493d5d24f5fdd3dba30c199400 (patch) | |
| tree | ebce071d4991a8de6ea8440aef9093b92bb5d66b /js/tests/unit/button.js | |
| parent | ee709db67952c53b417a172534f24034eb2a92c8 (diff) | |
| parent | ba3639b2025b8f0c510087ff8fe522c2bf0b06f1 (diff) | |
| download | bootstrap-3f577ab86c4e07493d5d24f5fdd3dba30c199400.tar.xz bootstrap-3f577ab86c4e07493d5d24f5fdd3dba30c199400.zip | |
Merge pull request #11881 from ZDroid/patch-1
Require comma on left side
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')) |
