Last active
September 11, 2016 04:39
-
-
Save frozenfung/34bd4e8e008a1aa08d8ef0eafea2cced to your computer and use it in GitHub Desktop.
This file contains hidden or 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
if (typeof module !== ‘undefined’ && module.exports) { | |
module.exports = TinySlide; | |
} else if (typeof define === ‘function’ && typeof define.amd === ‘object’ && define.amd) { | |
define(‘TinySlide’, [], function () { | |
return TinySlide; | |
}); | |
} else { | |
window.TinySlide = TinySlide; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment