Sha256: e85913f1d8ddf09a007797ec03903240b49747df0120215da2296a6f470319fc
Contents?: true
Size: 1.04 KB
Versions: 8
Compression:
Stored size: 1.04 KB
Contents
/* Just an example for an all-in-one convenience include create your own slide.js to include your own extensions and change the startup (document ready) code as needed Tell us about your extentions or changes on the forum. Thank! Find the forum @ http://groups.google.com/group/webslideshow */ $.ajaxSetup({async: false}); $.getScript( 'shared/slides.core.js' ); $.ajaxSetup({async: true}); $(document).ready(function(){ if( $.browser.msie ) { $( '.layout > *').hide(); $( '.presentation').hide(); $( '#microsoft' ).show(); } else { defaultCheck(); addSlideIds(); createControls(); /* opera is the only browser currently supporting css projection mode */ /* if( !$.browser.opera ) */ notOperaFix(); steps = collectSteps(); if( defaultView == 'outline' ) toggle(); document.onkeyup = keys; } });
Version data entries
8 entries across 8 versions & 1 rubygems