Skip to content

Commit

Permalink
remove refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
hirokidaichi committed Apr 1, 2016
1 parent 8f8a682 commit 41d63a7
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
9 changes: 5 additions & 4 deletions gulpfile.js
Expand Up @@ -10,7 +10,7 @@ gulp.task('clean', function(done) {
});
});

gulp.task('package', ['win32', 'darwin', 'linux'].map(function(platform) {
var packaging = ['win32', 'darwin', 'linux'].map(function(platform) {
var taskName = 'package:' + platform;
var distDir = 'dist';
gulp.task(taskName, function(done) {
Expand All @@ -21,11 +21,12 @@ gulp.task('package', ['win32', 'darwin', 'linux'].map(function(platform) {
platform: platform,
out: 'package/' + platform,
version: electronVersion,
ignore: /package/,
asar: true
ignore: "/package($|/)",
asar: true,
}, function(err) {
done();
});
});
return taskName;
}));
});
gulp.task('package', ['clean'].concat(packaging));
2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -20,7 +20,7 @@
<div class="navigation">
<div id="scale">
<button id="download" class="btn btn-default"><span class="glyphicon glyphicon-download" aria-hidden="true"></span></button>
<button id="refresh" class="btn btn-default"><span class="glyphicon glyphicon-refresh" aria-hidden="true"></span></button>

<div class="btn-group" role="group" aria-label="...">
<button id="plus" class="btn btn-default">
<span class="glyphicon glyphicon-zoom-in" aria-hidden="true"></span>
Expand Down
Binary file not shown.
Binary file modified package/linux/guiflow-linux-x64/resources/app.asar
Binary file not shown.
Binary file modified package/win32/guiflow-win32-x64/resources/app.asar
Binary file not shown.
7 changes: 7 additions & 0 deletions sample/hoge
@@ -0,0 +1,7 @@

[aaa]

iii

[uuu]

0 comments on commit 41d63a7

Please sign in to comment.