Skip to content

Commit

Permalink
eslint error fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
joemidi committed May 12, 2016
1 parent f976806 commit d0623c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/layout/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,6 @@
});

tab.show = selectTab;

}
window['MaterialLayoutTab'] = MaterialLayoutTab;

Expand Down
4 changes: 2 additions & 2 deletions src/mdlComponentHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ componentHandler = (function() {
var ev;
if ('CustomEvent' in window && typeof window.CustomEvent === 'function') {
ev = new Event('mdl-componentupgraded', {
'bubbles': true, 'cancelable': false
bubbles: true, cancelable: false
});
} else {
ev = document.createEvent('Events');
Expand Down Expand Up @@ -361,7 +361,7 @@ componentHandler = (function() {
var ev;
if ('CustomEvent' in window && typeof window.CustomEvent === 'function') {
ev = new Event('mdl-componentdowngraded', {
'bubbles': true, 'cancelable': false
bubbles: true, cancelable: false
});
} else {
ev = document.createEvent('Events');
Expand Down

0 comments on commit d0623c0

Please sign in to comment.