aboutsummaryrefslogtreecommitdiff
path: root/js/tests/unit/button.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/tests/unit/button.js')
-rw-r--r--js/tests/unit/button.js22
1 files changed, 11 insertions, 11 deletions
diff --git a/js/tests/unit/button.js b/js/tests/unit/button.js
index fff6df5bc..c162e3a9f 100644
--- a/js/tests/unit/button.js
+++ b/js/tests/unit/button.js
@@ -107,17 +107,17 @@ $(function () {
QUnit.test('should check for closest matching toggle', function (assert) {
assert.expect(12)
var groupHTML =
- '<div class="btn-group" data-toggle="buttons">'
- + ' <label class="btn btn-primary active">'
- + ' <input type="radio" name="options" id="option1" checked="true"> Option 1'
- + ' </label>'
- + ' <label class="btn btn-primary">'
- + ' <input type="radio" name="options" id="option2"> Option 2'
- + ' </label>'
- + ' <label class="btn btn-primary">'
- + ' <input type="radio" name="options" id="option3"> Option 3'
- + ' </label>'
- + '</div>'
+ '<div class="btn-group" data-toggle="buttons">' +
+ ' <label class="btn btn-primary active">' +
+ ' <input type="radio" name="options" id="option1" checked="true"> Option 1' +
+ ' </label>' +
+ ' <label class="btn btn-primary">' +
+ ' <input type="radio" name="options" id="option2"> Option 2' +
+ ' </label>' +
+ ' <label class="btn btn-primary">' +
+ ' <input type="radio" name="options" id="option3"> Option 3' +
+ ' </label>' +
+ '</div>'
var $group = $(groupHTML).appendTo('#qunit-fixture')