Commit 3b84ffcc authored by Mark Otto's avatar Mark Otto
Browse files

grunt

parent c5c07285
Showing with 21 additions and 11 deletions
+21 -11
......@@ -4508,7 +4508,7 @@ input[type="button"].btn-block {
.label {
display: inline-block;
padding: .25em .4em;
padding: 0.25em 0.4em;
font-size: 75%;
font-weight: bold;
line-height: 1;
......@@ -4535,8 +4535,8 @@ a.label:focus, a.label:hover {
}
.label-pill {
padding-right: .6em;
padding-left: .6em;
padding-right: 0.6em;
padding-left: 0.6em;
border-radius: 10rem;
}
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
......@@ -462,6 +462,8 @@ var Button = (function ($) {
input.checked = !$(this._element).hasClass(ClassName.ACTIVE);
$(this._element).trigger('change');
}
$(input).trigger('focus');
}
} else {
this._element.setAttribute('aria-pressed', !$(this._element).hasClass(ClassName.ACTIVE));
......
This diff is collapsed.
......@@ -108,6 +108,8 @@
input.checked = !$(this._element).hasClass(ClassName.ACTIVE);
$(this._element).trigger('change');
}
$(input).trigger('focus');
}
} else {
this._element.setAttribute('aria-pressed', !$(this._element).hasClass(ClassName.ACTIVE));
......
This diff is collapsed.
......@@ -4508,7 +4508,7 @@ input[type="button"].btn-block {
.label {
display: inline-block;
padding: .25em .4em;
padding: 0.25em 0.4em;
font-size: 75%;
font-weight: bold;
line-height: 1;
......@@ -4535,8 +4535,8 @@ a.label:focus, a.label:hover {
}
.label-pill {
padding-right: .6em;
padding-left: .6em;
padding-right: 0.6em;
padding-left: 0.6em;
border-radius: 10rem;
}
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
......@@ -462,6 +462,8 @@ var Button = (function ($) {
input.checked = !$(this._element).hasClass(ClassName.ACTIVE);
$(this._element).trigger('change');
}
$(input).trigger('focus');
}
} else {
this._element.setAttribute('aria-pressed', !$(this._element).hasClass(ClassName.ACTIVE));
......
This diff is collapsed.
......@@ -108,6 +108,8 @@
input.checked = !$(this._element).hasClass(ClassName.ACTIVE);
$(this._element).trigger('change');
}
$(input).trigger('focus');
}
} else {
this._element.setAttribute('aria-pressed', !$(this._element).hasClass(ClassName.ACTIVE));
......
......@@ -95,6 +95,8 @@ var Button = (function ($) {
input.checked = !$(this._element).hasClass(ClassName.ACTIVE);
$(this._element).trigger('change');
}
$(input).trigger('focus');
}
} else {
this._element.setAttribute('aria-pressed', !$(this._element).hasClass(ClassName.ACTIVE));
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment