mirror of
https://github.com/fastmail/Squire.git
synced 2024-12-22 23:40:35 -05:00
export Squire
This commit is contained in:
parent
1ec7956c97
commit
3f643b5718
3 changed files with 12 additions and 4 deletions
|
@ -3576,7 +3576,11 @@ if ( top !== win ) {
|
||||||
win.onEditorLoad = null;
|
win.onEditorLoad = null;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
win.Squire = Squire;
|
if ( module && module.exports ) {
|
||||||
|
module.exports = Squire;
|
||||||
|
} else {
|
||||||
|
win.Squire = Squire;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}( document ) );
|
}( document ) );
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -7,7 +7,11 @@ if ( top !== win ) {
|
||||||
win.onEditorLoad = null;
|
win.onEditorLoad = null;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
win.Squire = Squire;
|
if ( module && module.exports ) {
|
||||||
|
module.exports = Squire;
|
||||||
|
} else {
|
||||||
|
win.Squire = Squire;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}( document ) );
|
}( document ) );
|
||||||
|
|
Loading…
Reference in a new issue