2011-06-07 21:10:59 +02:00
|
|
|
/**
|
|
|
|
* Copyright (C) 2011 Hakim El Hattab, http://hakim.se
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
2011-12-22 05:22:49 +01:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* #############################################################################
|
|
|
|
*
|
|
|
|
*
|
2011-12-05 03:07:33 +01:00
|
|
|
* Reveal.js is an easy to use HTML based slideshow enhanced by
|
|
|
|
* sexy CSS 3D transforms.
|
2011-06-07 21:10:59 +02:00
|
|
|
*
|
|
|
|
* Slides are given unique hash based URL's so that they can be
|
2011-12-05 03:55:48 +01:00
|
|
|
* opened directly.
|
2011-06-07 21:10:59 +02:00
|
|
|
*
|
2011-12-05 03:07:33 +01:00
|
|
|
* Public facing methods:
|
|
|
|
* - Reveal.initialize( { ... options ... } );
|
|
|
|
* - Reveal.navigateTo( indexh, indexv );
|
|
|
|
* - Reveal.navigateLeft();
|
|
|
|
* - Reveal.navigateRight();
|
|
|
|
* - Reveal.navigateUp();
|
|
|
|
* - Reveal.navigateDown();
|
2011-06-07 21:10:59 +02:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* version 0.1:
|
|
|
|
* - First release
|
|
|
|
*
|
|
|
|
* version 0.2:
|
|
|
|
* - Refactored code and added inline documentation
|
|
|
|
* - Slides now have unique URL's
|
|
|
|
* - A basic API to invoke navigation was added
|
|
|
|
*
|
|
|
|
* version 0.3:
|
|
|
|
* - Added licensing terms
|
2011-12-05 03:55:48 +01:00
|
|
|
* - Fixed broken links on touch devices
|
2011-06-23 09:13:47 +02:00
|
|
|
*
|
2011-12-05 03:07:33 +01:00
|
|
|
* version 1.0:
|
|
|
|
* - Added controls
|
|
|
|
* - Added initialization options
|
|
|
|
* - Reveal views in fragments
|
|
|
|
* - Revamped, darker, theme
|
|
|
|
* - Tweaked markup styles (a, em, strong, b, i, blockquote, q, pre, ul, ol)
|
|
|
|
* - Support for themes at initialization (default/linear/concave)
|
|
|
|
* - Code highlighting via highlight.js
|
|
|
|
*
|
|
|
|
* TODO:
|
|
|
|
* - Touch/swipe interactions
|
2011-12-05 03:55:48 +01:00
|
|
|
* - Presentation overview via keyboard shortcut
|
2011-06-07 21:10:59 +02:00
|
|
|
*
|
2011-12-05 03:55:48 +01:00
|
|
|
* @author Hakim El Hattab | http://hakim.se
|
2011-12-22 05:22:49 +01:00
|
|
|
* @version 1.1
|
2011-06-07 21:10:59 +02:00
|
|
|
*/
|
2011-12-05 03:07:33 +01:00
|
|
|
var Reveal = (function(){
|
2011-06-07 21:10:59 +02:00
|
|
|
|
2011-12-05 03:07:33 +01:00
|
|
|
var HORIZONTAL_SLIDES_SELECTOR = '#main>section',
|
|
|
|
VERTICAL_SLIDES_SELECTOR = 'section.present>section',
|
2011-12-05 03:55:48 +01:00
|
|
|
|
2011-12-22 05:22:49 +01:00
|
|
|
// The horizontal and verical index of the currently active slide
|
2011-12-05 03:07:33 +01:00
|
|
|
indexh = 0,
|
|
|
|
indexv = 0,
|
|
|
|
|
2011-12-22 05:22:49 +01:00
|
|
|
// Configurations options, including;
|
|
|
|
// > {Boolean} controls
|
|
|
|
// > {String} theme
|
|
|
|
// > {Boolean} rollingLinks
|
2011-12-05 03:07:33 +01:00
|
|
|
config = {},
|
2011-12-22 05:22:49 +01:00
|
|
|
|
|
|
|
// Cached references to DOM elements
|
2011-12-05 03:07:33 +01:00
|
|
|
dom = {};
|
2011-06-07 21:10:59 +02:00
|
|
|
|
|
|
|
/**
|
2011-12-22 05:22:49 +01:00
|
|
|
* Starts up the slideshow by applying configuration
|
|
|
|
* options and binding various events.
|
2011-06-07 21:10:59 +02:00
|
|
|
*/
|
2011-12-05 03:07:33 +01:00
|
|
|
function initialize( options ) {
|
2011-12-22 05:22:49 +01:00
|
|
|
// Cache references to DOM elements
|
2011-12-05 03:07:33 +01:00
|
|
|
dom.controls = document.querySelector( '.controls' );
|
|
|
|
dom.controlsLeft = document.querySelector( '.controls .left' );
|
|
|
|
dom.controlsRight = document.querySelector( '.controls .right' );
|
|
|
|
dom.controlsUp = document.querySelector( '.controls .up' );
|
|
|
|
dom.controlsDown = document.querySelector( '.controls .down' );
|
|
|
|
|
2011-12-22 05:22:49 +01:00
|
|
|
// Bind all view events
|
2011-06-07 21:10:59 +02:00
|
|
|
document.addEventListener('keydown', onDocumentKeyDown, false);
|
|
|
|
document.addEventListener('touchstart', onDocumentTouchStart, false);
|
|
|
|
window.addEventListener('hashchange', onWindowHashChange, false);
|
2011-12-05 03:07:33 +01:00
|
|
|
dom.controlsLeft.addEventListener('click', preventAndForward( navigateLeft ), false);
|
|
|
|
dom.controlsRight.addEventListener('click', preventAndForward( navigateRight ), false);
|
|
|
|
dom.controlsUp.addEventListener('click', preventAndForward( navigateUp ), false);
|
|
|
|
dom.controlsDown.addEventListener('click', preventAndForward( navigateDown ), false);
|
|
|
|
|
2011-12-22 05:22:49 +01:00
|
|
|
// Fall back on default options
|
2011-12-05 03:07:33 +01:00
|
|
|
config.rollingLinks = options.rollingLinks === undefined ? true : options.rollingLinks;
|
|
|
|
config.controls = options.controls === undefined ? false : options.controls;
|
|
|
|
config.theme = options.theme === undefined ? 'default' : options.theme;
|
|
|
|
|
|
|
|
if( config.controls ) {
|
|
|
|
dom.controls.style.display = 'block';
|
|
|
|
}
|
|
|
|
|
|
|
|
if( config.theme !== 'default' ) {
|
|
|
|
document.body.classList.add( config.theme );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( config.rollingLinks ) {
|
|
|
|
// Add some 3D magic to our anchors
|
|
|
|
linkify();
|
|
|
|
}
|
|
|
|
|
2011-12-05 03:55:48 +01:00
|
|
|
// Read the initial hash
|
2011-06-07 21:10:59 +02:00
|
|
|
readURL();
|
|
|
|
}
|
2011-12-05 03:07:33 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Prevents an events defaults behavior calls the
|
|
|
|
* specified delegate.
|
2011-12-22 05:22:49 +01:00
|
|
|
*
|
|
|
|
* @param {Function} delegate The method to call
|
|
|
|
* after the wrapper has been executed
|
2011-12-05 03:07:33 +01:00
|
|
|
*/
|
|
|
|
function preventAndForward( delegate ) {
|
|
|
|
return function( event ) {
|
|
|
|
event.preventDefault();
|
|
|
|
delegate.call();
|
|
|
|
}
|
|
|
|
}
|
2011-06-07 21:10:59 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for the document level 'keydown' event.
|
|
|
|
*
|
|
|
|
* @param {Object} event
|
|
|
|
*/
|
|
|
|
function onDocumentKeyDown( event ) {
|
|
|
|
|
2011-12-22 05:22:49 +01:00
|
|
|
// FFT: Use document.querySelector( ':focus' ) === null
|
|
|
|
// instead of checking contentEditable?
|
|
|
|
|
2011-12-21 21:11:10 +01:00
|
|
|
if( event.keyCode >= 37 && event.keyCode <= 40 && event.target.contentEditable === 'inherit' ) {
|
2011-06-07 21:10:59 +02:00
|
|
|
|
|
|
|
switch( event.keyCode ) {
|
|
|
|
case 37: navigateLeft(); break; // left
|
|
|
|
case 39: navigateRight(); break; // right
|
|
|
|
case 38: navigateUp(); break; // up
|
|
|
|
case 40: navigateDown(); break; // down
|
|
|
|
}
|
|
|
|
|
|
|
|
slide();
|
|
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for the document level 'touchstart' event.
|
|
|
|
*
|
|
|
|
* This enables very basic tap interaction for touch
|
|
|
|
* devices. Added mainly for performance testing of 3D
|
|
|
|
* transforms on iOS but was so happily surprised with
|
|
|
|
* how smoothly it runs so I left it in here. Apple +1
|
|
|
|
*
|
|
|
|
* @param {Object} event
|
|
|
|
*/
|
|
|
|
function onDocumentTouchStart( event ) {
|
|
|
|
// We're only interested in one point taps
|
2011-06-23 09:05:53 +02:00
|
|
|
if (event.touches.length === 1) {
|
|
|
|
// Never prevent taps on anchors and images
|
|
|
|
if( event.target.tagName.toLowerCase() === 'a' || event.target.tagName.toLowerCase() === 'img' ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
var point = {
|
|
|
|
x: event.touches[0].clientX,
|
|
|
|
y: event.touches[0].clientY
|
|
|
|
};
|
|
|
|
|
|
|
|
// Define the extent of the areas that may be tapped
|
|
|
|
// to navigate
|
|
|
|
var wt = window.innerWidth * 0.3;
|
|
|
|
var ht = window.innerHeight * 0.3;
|
|
|
|
|
|
|
|
if( point.x < wt ) {
|
|
|
|
navigateLeft();
|
|
|
|
}
|
|
|
|
else if( point.x > window.innerWidth - wt ) {
|
|
|
|
navigateRight();
|
|
|
|
}
|
|
|
|
else if( point.y < ht ) {
|
|
|
|
navigateUp();
|
|
|
|
}
|
|
|
|
else if( point.y > window.innerHeight - ht ) {
|
|
|
|
navigateDown();
|
|
|
|
}
|
|
|
|
|
|
|
|
slide();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for the window level 'hashchange' event.
|
|
|
|
*
|
|
|
|
* @param {Object} event
|
|
|
|
*/
|
|
|
|
function onWindowHashChange( event ) {
|
|
|
|
readURL();
|
|
|
|
}
|
2011-12-05 03:07:33 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Wrap all links in 3D goodness.
|
|
|
|
*/
|
|
|
|
function linkify() {
|
|
|
|
var supports3DTransforms = document.body.style['webkitPerspective'] !== undefined ||
|
|
|
|
document.body.style['MozPerspective'] !== undefined ||
|
|
|
|
document.body.style['perspective'] !== undefined;
|
|
|
|
|
|
|
|
if( supports3DTransforms ) {
|
|
|
|
var nodes = document.querySelectorAll( 'section a:not(.image)' );
|
|
|
|
|
|
|
|
for( var i = 0, len = nodes.length; i < len; i++ ) {
|
|
|
|
var node = nodes[i];
|
|
|
|
|
|
|
|
if( !node.className || !node.className.match( /roll/g ) ) {
|
|
|
|
node.className += ' roll';
|
|
|
|
node.innerHTML = '<span data-title="'+ node.text +'">' + node.innerHTML + '</span>';
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2011-06-07 21:10:59 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates one dimension of slides by showing the slide
|
|
|
|
* with the specified index.
|
|
|
|
*
|
|
|
|
* @param {String} selector A CSS selector that will fetch
|
|
|
|
* the group of slides we are working with
|
|
|
|
* @param {Number} index The index of the slide that should be
|
|
|
|
* shown
|
|
|
|
*
|
|
|
|
* @return {Number} The index of the slide that is now shown,
|
|
|
|
* might differ from the passed in index if it was out of
|
|
|
|
* bounds.
|
|
|
|
*/
|
|
|
|
function updateSlides( selector, index ) {
|
|
|
|
|
|
|
|
// Select all slides and convert the NodeList result to
|
|
|
|
// an array
|
|
|
|
var slides = Array.prototype.slice.call( document.querySelectorAll( selector ) );
|
|
|
|
|
|
|
|
if( slides.length ) {
|
|
|
|
// Enforce max and minimum index bounds
|
|
|
|
index = Math.max(Math.min(index, slides.length - 1), 0);
|
|
|
|
|
|
|
|
slides[index].setAttribute('class', 'present');
|
|
|
|
|
|
|
|
// Any element previous to index is given the 'past' class
|
|
|
|
slides.slice(0, index).map(function(element){
|
|
|
|
element.setAttribute('class', 'past');
|
|
|
|
});
|
|
|
|
|
|
|
|
// Any element subsequent to index is given the 'future' class
|
|
|
|
slides.slice(index + 1).map(function(element){
|
|
|
|
element.setAttribute('class', 'future');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Since there are no slides we can't be anywhere beyond the
|
|
|
|
// zeroth index
|
|
|
|
index = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return index;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the visual slides to represent the currently
|
|
|
|
* set indices.
|
|
|
|
*/
|
|
|
|
function slide() {
|
2011-12-05 03:07:33 +01:00
|
|
|
indexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, indexh );
|
|
|
|
indexv = updateSlides( VERTICAL_SLIDES_SELECTOR, indexv );
|
|
|
|
|
|
|
|
updateControls();
|
2011-06-07 21:10:59 +02:00
|
|
|
|
|
|
|
writeURL();
|
|
|
|
}
|
2011-12-05 03:07:33 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the state and link pointers of the controls.
|
|
|
|
*/
|
|
|
|
function updateControls() {
|
|
|
|
var routes = availableRoutes();
|
|
|
|
|
|
|
|
// Remove the 'enabled' class from all directions
|
|
|
|
[ dom.controlsLeft, dom.controlsRight, dom.controlsUp, dom.controlsDown ].forEach( function( node ) {
|
|
|
|
node.classList.remove( 'enabled' );
|
|
|
|
} )
|
|
|
|
|
|
|
|
if( routes.left ) dom.controlsLeft.classList.add( 'enabled' );
|
|
|
|
if( routes.right ) dom.controlsRight.classList.add( 'enabled' );
|
|
|
|
if( routes.up ) dom.controlsUp.classList.add( 'enabled' );
|
|
|
|
if( routes.down ) dom.controlsDown.classList.add( 'enabled' );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-12-05 03:55:48 +01:00
|
|
|
* Determine what available routes there are for navigation.
|
2011-12-05 03:07:33 +01:00
|
|
|
*
|
2011-12-05 03:55:48 +01:00
|
|
|
* @return {Object} containing four booleans: left/right/up/down
|
2011-12-05 03:07:33 +01:00
|
|
|
*/
|
|
|
|
function availableRoutes() {
|
|
|
|
var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR );
|
|
|
|
var verticalSlides = document.querySelectorAll( VERTICAL_SLIDES_SELECTOR );
|
|
|
|
|
|
|
|
return {
|
|
|
|
left: indexh > 0,
|
|
|
|
right: indexh < horizontalSlides.length - 1,
|
|
|
|
up: indexv > 0,
|
|
|
|
down: indexv < verticalSlides.length - 1
|
|
|
|
};
|
|
|
|
}
|
2011-06-07 21:10:59 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads the current URL (hash) and navigates accordingly.
|
|
|
|
*/
|
|
|
|
function readURL() {
|
|
|
|
// Break the hash down to separate components
|
|
|
|
var bits = window.location.hash.slice(2).split('/');
|
|
|
|
|
|
|
|
// Read the index components of the hash
|
|
|
|
indexh = bits[0] ? parseInt( bits[0] ) : 0;
|
|
|
|
indexv = bits[1] ? parseInt( bits[1] ) : 0;
|
|
|
|
|
|
|
|
navigateTo( indexh, indexv );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the page URL (hash) to reflect the current
|
2011-12-22 05:22:49 +01:00
|
|
|
* state.
|
2011-06-07 21:10:59 +02:00
|
|
|
*/
|
|
|
|
function writeURL() {
|
|
|
|
var url = '/';
|
|
|
|
|
|
|
|
// Only include the minimum possible number of components in
|
|
|
|
// the URL
|
2011-12-05 03:07:33 +01:00
|
|
|
if( indexh > 0 || indexv > 0 ) url += indexh;
|
|
|
|
if( indexv > 0 ) url += '/' + indexv;
|
2011-06-07 21:10:59 +02:00
|
|
|
|
|
|
|
window.location.hash = url;
|
|
|
|
}
|
2011-12-05 03:07:33 +01:00
|
|
|
|
|
|
|
/**
|
2011-12-22 05:22:49 +01:00
|
|
|
* Navigate to the next slide fragment.
|
2011-12-05 03:07:33 +01:00
|
|
|
*
|
|
|
|
* @return {Boolean} true if there was a next fragment,
|
|
|
|
* false otherwise
|
|
|
|
*/
|
2011-12-22 05:22:49 +01:00
|
|
|
function nextFragment() {
|
|
|
|
// Vertical slides:
|
2011-12-17 21:55:25 +01:00
|
|
|
if( document.querySelector( VERTICAL_SLIDES_SELECTOR + '.present' ) ) {
|
|
|
|
var verticalFragments = document.querySelectorAll( VERTICAL_SLIDES_SELECTOR + '.present .fragment:not(.visible)' );
|
|
|
|
if( verticalFragments.length ) {
|
|
|
|
verticalFragments[0].classList.add( 'visible' );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2011-12-22 05:22:49 +01:00
|
|
|
// Horizontal slides:
|
2011-12-17 21:55:25 +01:00
|
|
|
else {
|
|
|
|
var horizontalFragments = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.present .fragment:not(.visible)' );
|
|
|
|
if( horizontalFragments.length ) {
|
|
|
|
horizontalFragments[0].classList.add( 'visible' );
|
|
|
|
return true;
|
|
|
|
}
|
2011-12-05 03:07:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Navigate to the previous slide fragment.
|
|
|
|
*
|
|
|
|
* @return {Boolean} true if there was a previous fragment,
|
|
|
|
* false otherwise
|
|
|
|
*/
|
|
|
|
function previousFragment() {
|
2011-12-22 05:22:49 +01:00
|
|
|
// Vertical slides:
|
2011-12-17 21:55:25 +01:00
|
|
|
if( document.querySelector( VERTICAL_SLIDES_SELECTOR + '.present' ) ) {
|
|
|
|
var verticalFragments = document.querySelectorAll( VERTICAL_SLIDES_SELECTOR + '.present .fragment.visible' );
|
|
|
|
if( verticalFragments.length ) {
|
|
|
|
verticalFragments[ verticalFragments.length - 1 ].classList.remove( 'visible' );
|
|
|
|
return true;
|
|
|
|
}
|
2011-12-05 03:07:33 +01:00
|
|
|
}
|
2011-12-22 05:22:49 +01:00
|
|
|
// Horizontal slides:
|
2011-12-17 21:55:25 +01:00
|
|
|
else {
|
|
|
|
var horizontalFragments = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.present .fragment.visible' );
|
|
|
|
if( horizontalFragments.length ) {
|
|
|
|
horizontalFragments[ horizontalFragments.length - 1 ].classList.remove( 'visible' );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-05 03:07:33 +01:00
|
|
|
return false;
|
|
|
|
}
|
2011-06-07 21:10:59 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Triggers a navigation to the specified indices.
|
|
|
|
*
|
|
|
|
* @param {Number} h The horizontal index of the slide to show
|
|
|
|
* @param {Number} v The vertical index of the slide to show
|
|
|
|
*/
|
|
|
|
function navigateTo( h, v ) {
|
|
|
|
indexh = h === undefined ? indexh : h;
|
|
|
|
indexv = v === undefined ? indexv : v;
|
|
|
|
|
|
|
|
slide();
|
|
|
|
}
|
|
|
|
|
|
|
|
function navigateLeft() {
|
2011-12-05 03:07:33 +01:00
|
|
|
// Prioritize hiding fragments
|
|
|
|
if( previousFragment() === false ) {
|
|
|
|
indexh --;
|
|
|
|
indexv = 0;
|
|
|
|
slide();
|
|
|
|
}
|
2011-06-07 21:10:59 +02:00
|
|
|
}
|
|
|
|
function navigateRight() {
|
2011-12-05 03:07:33 +01:00
|
|
|
// Prioritize revealing fragments
|
|
|
|
if( nextFragment() === false ) {
|
|
|
|
indexh ++;
|
|
|
|
indexv = 0;
|
|
|
|
slide();
|
|
|
|
}
|
2011-06-07 21:10:59 +02:00
|
|
|
}
|
|
|
|
function navigateUp() {
|
2011-12-05 03:07:33 +01:00
|
|
|
// Prioritize hiding fragments
|
|
|
|
if( previousFragment() === false ) {
|
|
|
|
indexv --;
|
|
|
|
slide();
|
|
|
|
}
|
2011-06-07 21:10:59 +02:00
|
|
|
}
|
|
|
|
function navigateDown() {
|
2011-12-05 03:07:33 +01:00
|
|
|
// Prioritize revealing fragments
|
|
|
|
if( nextFragment() === false ) {
|
|
|
|
indexv ++;
|
|
|
|
slide();
|
|
|
|
}
|
2011-06-07 21:10:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Expose some methods publicly
|
|
|
|
return {
|
2011-12-05 03:07:33 +01:00
|
|
|
initialize: initialize,
|
2011-06-07 21:10:59 +02:00
|
|
|
navigateTo: navigateTo,
|
|
|
|
navigateLeft: navigateLeft,
|
|
|
|
navigateRight: navigateRight,
|
|
|
|
navigateUp: navigateUp,
|
|
|
|
navigateDown: navigateDown
|
|
|
|
};
|
|
|
|
|
|
|
|
})();
|
|
|
|
|