merge umd wrapping
This commit is contained in:
commit
6aaff6395a
2 changed files with 24 additions and 4 deletions
|
@ -70,7 +70,9 @@ module.exports = function(grunt) {
|
||||||
head: false,
|
head: false,
|
||||||
module: false,
|
module: false,
|
||||||
console: false,
|
console: false,
|
||||||
unescape: false
|
unescape: false,
|
||||||
|
define: false,
|
||||||
|
exports: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
files: [ 'Gruntfile.js', 'js/reveal.js' ]
|
files: [ 'Gruntfile.js', 'js/reveal.js' ]
|
||||||
|
|
24
js/reveal.js
24
js/reveal.js
|
@ -5,10 +5,26 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014 Hakim El Hattab, http://hakim.se
|
* 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.
|
||||||
|
module.exports = factory();
|
||||||
|
} else {
|
||||||
|
// Browser globals.
|
||||||
|
root.Reveal = factory();
|
||||||
|
}
|
||||||
|
}( this, function() {
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
var Reveal;
|
||||||
|
|
||||||
var SLIDES_SELECTOR = '.reveal .slides section',
|
var SLIDES_SELECTOR = '.reveal .slides section',
|
||||||
HORIZONTAL_SLIDES_SELECTOR = '.reveal .slides>section',
|
HORIZONTAL_SLIDES_SELECTOR = '.reveal .slides>section',
|
||||||
VERTICAL_SLIDES_SELECTOR = '.reveal .slides>section.present>section',
|
VERTICAL_SLIDES_SELECTOR = '.reveal .slides>section.present>section',
|
||||||
|
@ -3735,7 +3751,7 @@ var Reveal = (function(){
|
||||||
// --------------------------------------------------------------------//
|
// --------------------------------------------------------------------//
|
||||||
|
|
||||||
|
|
||||||
return {
|
Reveal = {
|
||||||
initialize: initialize,
|
initialize: initialize,
|
||||||
configure: configure,
|
configure: configure,
|
||||||
sync: sync,
|
sync: sync,
|
||||||
|
@ -3889,4 +3905,6 @@ var Reveal = (function(){
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
})();
|
return Reveal;
|
||||||
|
|
||||||
|
}));
|
||||||
|
|
Loading…
Reference in a new issue