This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var projectName = 'main', | |
srcDir = './src', | |
gulp = require('gulp'), | |
exec = require('gulp-exec'); | |
gulp.task('serve', function() { | |
var opts = { continueOnError: true, pipeStdout: true }, | |
goCmd = 'sh -c "go run ' + __dirname + '/src/*.go&"', | |
killCmd = 'killall -q go ' + projectName; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
jQuery(function() { | |
if ('undefined' !== typeof submenuItems) { | |
submenuItems.off(); | |
} | |
if ('undefined' !== typeof primaryItems) { | |
primaryItems.off(); | |
} | |
if ('undefined' !== typeof sidebar) { | |
sidebar.off(); |
NewerOlder