Skip to content

Commit

Permalink
remove babily for now (checkbox issue in grid)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Lasky committed Dec 7, 2016
1 parent d4a3bee commit a0ff681
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions gulp/tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@
empty: true,
spare: true
}))
.pipe(inlineBabel())
.pipe(plugins.inlinemin({js:false}))
// .pipe(inlineBabel())
.pipe(plugins.inlinemin())
.pipe(plugins.header('<!--\n' + fs.readFileSync('BANNER.txt','utf8') + ' -->'))
.pipe(C.dbg('vulcanize-modules'))
.pipe(gulp.dest(C.DIST));
Expand All @@ -223,8 +223,8 @@
empty: true,
spare: true
}))
.pipe(inlineBabel())
.pipe(plugins.inlinemin({js:false}))
// .pipe(inlineBabel())
.pipe(plugins.inlinemin())
.pipe(plugins.header('<!--\n' + fs.readFileSync('BANNER.txt','utf8') + ' -->'))
.pipe(C.dbg('vulcanize-lib'))
.pipe(gulp.dest(C.DIST));
Expand Down
2 changes: 1 addition & 1 deletion src/strand-grid/strand-grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@
return Polymer.dom(this).removeChild(column);
},

_showNoResults(noResultsMessage, data) {
_showNoResults: function(noResultsMessage, data) {
if (noResultsMessage) {
return !data || data && !data.length;
} else {
Expand Down

0 comments on commit a0ff681

Please sign in to comment.