diff options
author | Michael Williams | 2014-04-08 17:08:21 -0700 |
---|---|---|
committer | Michael Williams | 2014-04-08 17:08:21 -0700 |
commit | 613a05f1544d21d5a16ffcefd960c24daec91873 (patch) | |
tree | b9e322b1327639d90ed06eac9630cabbe5022661 /js | |
parent | 9da952fea30906090446d038430186b11dba7f13 (diff) |
add UMD support. fix #787
Diffstat (limited to 'js')
-rw-r--r-- | js/reveal.js | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/js/reveal.js b/js/reveal.js index 5cbb3ff..2fd07a8 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -5,10 +5,28 @@ * * Copyright (C) 2014 Hakim El Hattab, http://hakim.se */ -var Reveal = (function(){ +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module. + define(function () { + root.Reveal = factory(); + return root.Reveal; + }); + } else if (typeof exports === 'object') { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like enviroments that support module.exports, + // like Node. + module.exports = factory(); + } else { + // Browser globals + root.Reveal = factory(); + } +}(this, function(){ 'use strict'; + var Reveal; + var SLIDES_SELECTOR = '.reveal .slides section', HORIZONTAL_SLIDES_SELECTOR = '.reveal .slides>section', VERTICAL_SLIDES_SELECTOR = '.reveal .slides>section.present>section', @@ -3232,7 +3250,7 @@ var Reveal = (function(){ // --------------------------------------------------------------------// - return { + Reveal = { initialize: initialize, configure: configure, sync: sync, @@ -3379,4 +3397,6 @@ var Reveal = (function(){ } }; -})(); + return Reveal; + +})); |