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
window.addEventListener("blur", function () { | |
if (me.sys.stopOnBlur) { | |
me.state.stop(true); | |
} | |
if (me.sys.pauseOnBlur) { | |
// terebentina | |
me.sys.pauseOnBlurContext = me.state.isPaused(); // save the current isPaused state so we know what to resume to | |
me.state.pause(true); | |
} | |
}, false); |
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
"use strict"; | |
var path = require('path' ), | |
webpack = require('webpack') | |
; | |
var _DEV_ = true; | |
var config = { | |
entry: { |