0
Fork 0
mirror of https://github.com/fastmail/Squire.git synced 2025-01-03 05:00:13 -05:00

Merge branch 'npm' of https://github.com/shiawuen/Squire into shiawuen-npm

This commit is contained in:
Neil Jenkins 2015-05-09 17:27:27 +07:00
commit c524772a63
4 changed files with 18 additions and 4 deletions

6
.npmignore Normal file
View file

@ -0,0 +1,6 @@
Makefile
.jshintrc
.gitignore
.editorconfig
bower.json
source/

View file

@ -3608,8 +3608,12 @@ if ( top !== win ) {
win.onEditorLoad( win.editor );
win.onEditorLoad = null;
}
} else {
if ( typeof exports === 'object' ) {
module.exports = Squire;
} else {
win.Squire = Squire;
}
}
}( document ) );

File diff suppressed because one or more lines are too long

View file

@ -6,8 +6,12 @@ if ( top !== win ) {
win.onEditorLoad( win.editor );
win.onEditorLoad = null;
}
} else {
if ( typeof exports === 'object' ) {
module.exports = Squire;
} else {
win.Squire = Squire;
}
}
}( document ) );