Skip to content

Commit

Permalink
chore (all) release
Browse files Browse the repository at this point in the history
  • Loading branch information
genadis committed Feb 15, 2016
1 parent 45bd818 commit 73672d7
Show file tree
Hide file tree
Showing 10 changed files with 124 additions and 175 deletions.
2 changes: 1 addition & 1 deletion dist/amd/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

92 changes: 37 additions & 55 deletions dist/amd/mdl.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/mdl.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/commonjs/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

92 changes: 37 additions & 55 deletions dist/commonjs/mdl.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/commonjs/mdl.js.map

Large diffs are not rendered by default.

11 changes: 7 additions & 4 deletions dist/es6/mdl.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,15 @@ function manageRipple(element) {
/** Some of the elements do require upgrade of nested elements, to avoid issues we must handle it carefully
* NOTE: not sure about all the elements that require nested upgrading. Will add all the required when used and tested.
*/
if (element.MaterialIconToggle) {
if (element.MaterialIconToggle || element.MaterialCheckbox) {
/* We need to upgrade immediate children only, no easy way to do it (for all browsers) */
let children = element.children;
for (let child of children) {
if (child.classList.contains('mdl-js-ripple-effect')) {
componentHandler.upgradeElement(child, 'MaterialRipple');
if (children) {
for (let i = 0; i < children.length; i++) {
let child = children[i];
if (child.classList.contains('mdl-js-ripple-effect')) {
componentHandler.upgradeElement(child, 'MaterialRipple');
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/system/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 73672d7

Please sign in to comment.