Merge branch 'develop' into paring.down

This commit is contained in:
Connor Turland 2016-08-10 17:16:33 +00:00
commit c308e276e8
2 changed files with 6 additions and 0 deletions

View file

@ -29,6 +29,7 @@ Metamaps.Import = {
$('body').bind('paste', function (e) {
if (e.target.tagName === 'INPUT') return
if (e.target.tagName === 'TEXTAREA') return
var text = e.originalEvent.clipboardData.getData('text/plain')

View file

@ -3,6 +3,11 @@ const webpack = 'webpack'
const config = module.exports = {
context: __dirname,
plugins: [
new webpack.DefinePlugin({
"process.env.NODE_ENV": `"${process.env.NODE_ENV || 'development'}"`
})
],
module: {
loaders: [
{