mirror of
https://github.com/fastmail/Squire.git
synced 2024-12-22 15:23:29 -05:00
Merge pull request #82 from shiawuen-npm
This commit is contained in:
commit
ede9e5b201
4 changed files with 18 additions and 4 deletions
6
.npmignore
Normal file
6
.npmignore
Normal file
|
@ -0,0 +1,6 @@
|
|||
Makefile
|
||||
.jshintrc
|
||||
.gitignore
|
||||
.editorconfig
|
||||
bower.json
|
||||
source/
|
|
@ -3609,7 +3609,11 @@ if ( top !== win ) {
|
|||
win.onEditorLoad = null;
|
||||
}
|
||||
} else {
|
||||
win.Squire = Squire;
|
||||
if ( typeof exports === 'object' ) {
|
||||
module.exports = Squire;
|
||||
} else {
|
||||
win.Squire = Squire;
|
||||
}
|
||||
}
|
||||
|
||||
}( document ) );
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -7,7 +7,11 @@ if ( top !== win ) {
|
|||
win.onEditorLoad = null;
|
||||
}
|
||||
} else {
|
||||
win.Squire = Squire;
|
||||
if ( typeof exports === 'object' ) {
|
||||
module.exports = Squire;
|
||||
} else {
|
||||
win.Squire = Squire;
|
||||
}
|
||||
}
|
||||
|
||||
}( document ) );
|
||||
|
|
Loading…
Reference in a new issue