Skip to content

Commit

Permalink
Fix clipboard feature
Browse files Browse the repository at this point in the history
  • Loading branch information
joshbtn committed Mar 21, 2017
1 parent 8842fc0 commit caf8656
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ gulp.task('scripts', function() {
});

gulp.task('site', function() {
gulp.src(paths.siteScripts)
return gulp.src(paths.siteScripts)
.pipe(concat('page.js'))
.pipe(concat('beautifier.js'))
.pipe(gulp.dest('js/tmp'))
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ <h1>Excel Formula Beautifier</h1>
<div class="row">
<div class="col-md-12">
<div class="formula">
<button id="copyFormulaBtn" class="button">Copy</button>
<button id="copyFormulaBtn" data-clipboard-target="#fomatFormula_2_out" class="button">Copy</button>
<div id="fomatFormula_2_out"></div>
</div>
</div>
Expand Down

0 comments on commit caf8656

Please sign in to comment.