forked from crabbly/Print.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make module name and typings consistent
Change interface to use `printJS` both as an import as well as on window object.
- Loading branch information
Sam Tsai
committed
Sep 20, 2018
1 parent
ceac6c1
commit cc4fa86
Showing
3 changed files
with
31 additions
and
31 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import './sass/index.scss' | ||
import print from './js/init' | ||
|
||
const printjs = print.init | ||
const printJS = print.init | ||
|
||
if (typeof window !== 'undefined') { | ||
window.printJS = printjs | ||
window.printJS = printJS | ||
} | ||
|
||
export default printjs | ||
export default printJS |
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