reveal.js 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715
  1. /**
  2. * Copyright (C) 2011 Hakim El Hattab, http://hakim.se
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5. * of this software and associated documentation files (the "Software"), to deal
  6. * in the Software without restriction, including without limitation the rights
  7. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. * copies of the Software, and to permit persons to whom the Software is
  9. * furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  20. * THE SOFTWARE.
  21. *
  22. *
  23. * #############################################################################
  24. *
  25. *
  26. * Reveal.js is an easy to use HTML based slideshow enhanced by
  27. * sexy CSS 3D transforms.
  28. *
  29. * Slides are given unique hash based URL's so that they can be
  30. * opened directly.
  31. *
  32. * Public facing methods:
  33. * - Reveal.initialize( { ... options ... } );
  34. * - Reveal.navigateTo( indexh, indexv );
  35. * - Reveal.navigateLeft();
  36. * - Reveal.navigateRight();
  37. * - Reveal.navigateUp();
  38. * - Reveal.navigateDown();
  39. *
  40. *
  41. * version 0.1:
  42. * - First release
  43. *
  44. * version 0.2:
  45. * - Refactored code and added inline documentation
  46. * - Slides now have unique URL's
  47. * - A basic API to invoke navigation was added
  48. *
  49. * version 0.3:
  50. * - Added licensing terms
  51. * - Fixed broken links on touch devices
  52. *
  53. * version 1.0:
  54. * - Added controls
  55. * - Added initialization options
  56. * - Reveal views in fragments
  57. * - Revamped, darker, theme
  58. * - Tweaked markup styles (a, em, strong, b, i, blockquote, q, pre, ul, ol)
  59. * - Support for themes at initialization (default/linear/concave)
  60. * - Code highlighting via highlight.js
  61. *
  62. * version 1.1:
  63. * - Optional progress bar UI element
  64. * - Slide overview available via SPACE
  65. * - Added 'transition' option for specifying transition styles
  66. * - Added 'theme' option for specifying UI styles
  67. * - Slides that contain nested-slides are given the 'stack' class
  68. *
  69. * version 1.2:
  70. * - Big changes to DOM structure:
  71. * - Previous #main wrapper is now called #reveal
  72. * - Slides were moved one level deeper, into #reveal .slides
  73. * - Controls and progress bar were moved into #reveal
  74. * - All CSS is now much more explicit, rooted at #reveal, to prevent conflicts
  75. * - Config option for disabling updates to URL, defaults to true
  76. *
  77. *
  78. * @author Hakim El Hattab | http://hakim.se
  79. * @version 1.2
  80. */
  81. var Reveal = (function(){
  82. var HORIZONTAL_SLIDES_SELECTOR = '#reveal .slides>section',
  83. VERTICAL_SLIDES_SELECTOR = '#reveal .slides>section.present>section',
  84. // The horizontal and verical index of the currently active slide
  85. indexh = 0,
  86. indexv = 0,
  87. // Configurations options, can be overridden at initialization time
  88. config = {
  89. controls: false,
  90. progress: false,
  91. history: false,
  92. transition: 'default',
  93. theme: 'default',
  94. rollingLinks: true
  95. },
  96. // Cached references to DOM elements
  97. dom = {},
  98. // Detect support for CSS 3D transforms
  99. supports3DTransforms = document.body.style['perspectiveProperty'] !== undefined ||
  100. document.body.style['WebkitPerspective'] !== undefined ||
  101. document.body.style['MozPerspective'] !== undefined ||
  102. document.body.style['msPerspective'] !== undefined,
  103. supports2DTransforms = document.body.style['transformProperty'] !== undefined ||
  104. document.body.style['WebkitTransform'] !== undefined ||
  105. document.body.style['MozTransform'] !== undefined ||
  106. document.body.style['msTransform'] !== undefined ||
  107. document.body.style['OTransform'] !== undefined;
  108. /**
  109. * Starts up the slideshow by applying configuration
  110. * options and binding various events.
  111. */
  112. function initialize( options ) {
  113. if( !supports2DTransforms && !supports3DTransforms ) {
  114. document.body.setAttribute( 'class', 'no-transforms' );
  115. // If the browser doesn't support transforms we won't be
  116. // using JavaScript to control the presentation
  117. return;
  118. }
  119. // Cache references to DOM elements
  120. dom.wrapper = document.querySelector( '#reveal' );
  121. dom.progress = document.querySelector( '#reveal .progress' );
  122. dom.progressbar = document.querySelector( '#reveal .progress span' );
  123. dom.controls = document.querySelector( '#reveal .controls' );
  124. dom.controlsLeft = document.querySelector( '#reveal .controls .left' );
  125. dom.controlsRight = document.querySelector( '#reveal .controls .right' );
  126. dom.controlsUp = document.querySelector( '#reveal .controls .up' );
  127. dom.controlsDown = document.querySelector( '#reveal .controls .down' );
  128. // Bind all view events
  129. document.addEventListener('keydown', onDocumentKeyDown, false);
  130. document.addEventListener('touchstart', onDocumentTouchStart, false);
  131. window.addEventListener('hashchange', onWindowHashChange, false);
  132. dom.controlsLeft.addEventListener('click', preventAndForward( navigateLeft ), false);
  133. dom.controlsRight.addEventListener('click', preventAndForward( navigateRight ), false);
  134. dom.controlsUp.addEventListener('click', preventAndForward( navigateUp ), false);
  135. dom.controlsDown.addEventListener('click', preventAndForward( navigateDown ), false);
  136. // Copy options over to our config object
  137. extend( config, options );
  138. // Fall back on the 2D transform theme 'linear'
  139. if( supports3DTransforms === false ) {
  140. config.transition = 'linear';
  141. }
  142. if( config.controls ) {
  143. dom.controls.style.display = 'block';
  144. }
  145. if( config.progress ) {
  146. dom.progress.style.display = 'block';
  147. }
  148. if( config.transition !== 'default' ) {
  149. addClass( dom.wrapper, config.transition );
  150. }
  151. if( config.theme !== 'default' ) {
  152. addClass( dom.wrapper, config.theme );
  153. }
  154. if( config.rollingLinks ) {
  155. // Add some 3D magic to our anchors
  156. linkify();
  157. }
  158. //bind scrolling
  159. if(window.addEventListener){
  160. document.addEventListener('DOMMouseScroll', scrollStep, false);
  161. }
  162. // Read the initial hash
  163. readURL();
  164. }
  165. /**
  166. * Extend object a with the properties of object b.
  167. * If there's a conflict, object b takes precedence.
  168. */
  169. function extend( a, b ) {
  170. for( var i in b ) {
  171. a[ i ] = b[ i ];
  172. }
  173. }
  174. /**
  175. * Prevents an events defaults behavior calls the
  176. * specified delegate.
  177. *
  178. * @param {Function} delegate The method to call
  179. * after the wrapper has been executed
  180. */
  181. function preventAndForward( delegate ) {
  182. return function( event ) {
  183. event.preventDefault();
  184. delegate.call();
  185. }
  186. }
  187. /**
  188. * Handler for the document level 'keydown' event.
  189. *
  190. * @param {Object} event
  191. */
  192. function onDocumentKeyDown( event ) {
  193. // FFT: Use document.querySelector( ':focus' ) === null
  194. // instead of checking contentEditable?
  195. if( event.target.contentEditable === 'inherit' ) {
  196. if( event.keyCode >= 37 && event.keyCode <= 40 ) {
  197. switch( event.keyCode ) {
  198. case 37: navigateLeft(); break; // left
  199. case 39: navigateRight(); break; // right
  200. case 38: navigateUp(); break; // up
  201. case 40: navigateDown(); break; // down
  202. }
  203. slide();
  204. event.preventDefault();
  205. }
  206. // Space bar
  207. else if ( event.keyCode === 32 && supports3DTransforms ) {
  208. if( overviewIsActive() ) {
  209. deactivateOverview();
  210. }
  211. else {
  212. activateOverview();
  213. }
  214. event.preventDefault();
  215. }
  216. }
  217. }
  218. /**
  219. * Handler for the document level 'touchstart' event.
  220. *
  221. * This enables very basic tap interaction for touch
  222. * devices. Added mainly for performance testing of 3D
  223. * transforms on iOS but was so happily surprised with
  224. * how smoothly it runs so I left it in here. Apple +1
  225. *
  226. * @param {Object} event
  227. */
  228. function onDocumentTouchStart( event ) {
  229. // We're only interested in one point taps
  230. if (event.touches.length === 1) {
  231. // Never prevent taps on anchors and images
  232. if( event.target.tagName.toLowerCase() === 'a' || event.target.tagName.toLowerCase() === 'img' ) {
  233. return;
  234. }
  235. event.preventDefault();
  236. var point = {
  237. x: event.touches[0].clientX,
  238. y: event.touches[0].clientY
  239. };
  240. // Define the extent of the areas that may be tapped
  241. // to navigate
  242. var wt = window.innerWidth * 0.3;
  243. var ht = window.innerHeight * 0.3;
  244. if( point.x < wt ) {
  245. navigateLeft();
  246. }
  247. else if( point.x > window.innerWidth - wt ) {
  248. navigateRight();
  249. }
  250. else if( point.y < ht ) {
  251. navigateUp();
  252. }
  253. else if( point.y > window.innerHeight - ht ) {
  254. navigateDown();
  255. }
  256. slide();
  257. }
  258. }
  259. /**
  260. * Handler for the window level 'hashchange' event.
  261. *
  262. * @param {Object} event
  263. */
  264. function onWindowHashChange( event ) {
  265. readURL();
  266. }
  267. /**
  268. * Wrap all links in 3D goodness.
  269. */
  270. function linkify() {
  271. if( supports3DTransforms ) {
  272. var nodes = document.querySelectorAll( '#reveal .slides section a:not(.image)' );
  273. for( var i = 0, len = nodes.length; i < len; i++ ) {
  274. var node = nodes[i];
  275. if( node.textContent && ( !node.className || !hasClass( node, 'roll' ) ) ) {
  276. addClass( node, 'roll' );
  277. node.innerHTML = '<span data-title="'+ node.text +'">' + node.innerHTML + '</span>';
  278. }
  279. };
  280. }
  281. }
  282. /**
  283. * Displays the overview of slides (quick nav) by
  284. * scaling down and arranging all slide elements.
  285. *
  286. * Experimental feature, might be dropped if perf
  287. * can't be improved.
  288. */
  289. function activateOverview() {
  290. addClass( dom.wrapper, 'overview' );
  291. var horizontalSlides = Array.prototype.slice.call( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );
  292. for( var i = 0, len1 = horizontalSlides.length; i < len1; i++ ) {
  293. var hslide = horizontalSlides[i],
  294. htransform = 'translateZ(-2500px) translate(' + ( ( i - indexh ) * 105 ) + '%, 0%)';
  295. hslide.setAttribute( 'data-index-h', i );
  296. hslide.style.display = 'block';
  297. hslide.style.WebkitTransform = htransform;
  298. hslide.style.MozTransform = htransform;
  299. hslide.style.msTransform = htransform;
  300. hslide.style.OTransform = htransform;
  301. hslide.style.transform = htransform;
  302. if( !hasClass( hslide, 'stack' ) ) {
  303. // Navigate to this slide on click
  304. hslide.addEventListener( 'click', onOverviewSlideClicked, true );
  305. }
  306. var verticalSlides = Array.prototype.slice.call( hslide.querySelectorAll( 'section' ) );
  307. for( var j = 0, len2 = verticalSlides.length; j < len2; j++ ) {
  308. var vslide = verticalSlides[j],
  309. vtransform = 'translate(0%, ' + ( ( j - indexv ) * 105 ) + '%)';
  310. vslide.setAttribute( 'data-index-h', i );
  311. vslide.setAttribute( 'data-index-v', j );
  312. vslide.style.display = 'block';
  313. vslide.style.WebkitTransform = vtransform;
  314. vslide.style.MozTransform = vtransform;
  315. vslide.style.msTransform = vtransform;
  316. vslide.style.OTransform = vtransform;
  317. vslide.style.transform = vtransform;
  318. // Navigate to this slide on click
  319. vslide.addEventListener( 'click', onOverviewSlideClicked, true );
  320. }
  321. }
  322. }
  323. /**
  324. * Exits the slide overview and enters the currently
  325. * active slide.
  326. */
  327. function deactivateOverview() {
  328. removeClass( dom.wrapper, 'overview' );
  329. var slides = Array.prototype.slice.call( document.querySelectorAll( '#reveal .slides section' ) );
  330. for( var i = 0, len = slides.length; i < len; i++ ) {
  331. var element = slides[i];
  332. // Resets all transforms to use the external styles
  333. element.style.WebkitTransform = '';
  334. element.style.MozTransform = '';
  335. element.style.msTransform = '';
  336. element.style.OTransform = '';
  337. element.style.transform = '';
  338. element.removeEventListener( 'click', onOverviewSlideClicked );
  339. }
  340. slide();
  341. }
  342. /**
  343. * Checks if the overview is currently active.
  344. *
  345. * @return {Boolean} true if the overview is active,
  346. * false otherwise
  347. */
  348. function overviewIsActive() {
  349. return hasClass( dom.wrapper, 'overview' );
  350. }
  351. /**
  352. * Invoked when a slide is and we're in the overview.
  353. */
  354. function onOverviewSlideClicked( event ) {
  355. // TODO There's a bug here where the event listeners are not
  356. // removed after deactivating the overview.
  357. if( overviewIsActive() ) {
  358. event.preventDefault();
  359. deactivateOverview();
  360. indexh = this.getAttribute( 'data-index-h' );
  361. indexv = this.getAttribute( 'data-index-v' );
  362. slide();
  363. }
  364. }
  365. /**
  366. * Updates one dimension of slides by showing the slide
  367. * with the specified index.
  368. *
  369. * @param {String} selector A CSS selector that will fetch
  370. * the group of slides we are working with
  371. * @param {Number} index The index of the slide that should be
  372. * shown
  373. *
  374. * @return {Number} The index of the slide that is now shown,
  375. * might differ from the passed in index if it was out of
  376. * bounds.
  377. */
  378. function updateSlides( selector, index ) {
  379. // Select all slides and convert the NodeList result to
  380. // an array
  381. var slides = Array.prototype.slice.call( document.querySelectorAll( selector ) );
  382. if( slides.length ) {
  383. // Enforce max and minimum index bounds
  384. index = Math.max(Math.min(index, slides.length - 1), 0);
  385. slides[index].className = 'present';
  386. for( var i = 0; i < slides.length; i++ ) {
  387. var slide = slides[i];
  388. // Optimization; hide all slides that are three or more steps
  389. // away from the present slide
  390. if( overviewIsActive() === false ) {
  391. slide.style.display = Math.abs( index - i ) > 3 ? 'none' : 'block';
  392. }
  393. if( i < index ) {
  394. // Any element previous to index is given the 'past' class
  395. slide.className = 'past';
  396. }
  397. else if( i > index ) {
  398. // Any element subsequent to index is given the 'future' class
  399. slide.className = 'future';
  400. }
  401. // If this element contains vertical slides
  402. if( slide.querySelector( 'section' ) ) {
  403. addClass( slide, 'stack' );
  404. }
  405. }
  406. }
  407. else {
  408. // Since there are no slides we can't be anywhere beyond the
  409. // zeroth index
  410. index = 0;
  411. }
  412. return index;
  413. }
  414. /**
  415. * Updates the visual slides to represent the currently
  416. * set indices.
  417. */
  418. function slide() {
  419. indexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, indexh );
  420. indexv = updateSlides( VERTICAL_SLIDES_SELECTOR, indexv );
  421. // Update progress if enabled
  422. if( config.progress ) {
  423. dom.progressbar.style.width = ( indexh / ( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ).length - 1 ) ) * window.innerWidth + 'px';
  424. }
  425. // Close the overview if it's active
  426. if( overviewIsActive() ) {
  427. activateOverview();
  428. }
  429. updateControls();
  430. writeURL();
  431. }
  432. /**
  433. * Updates the state and link pointers of the controls.
  434. */
  435. function updateControls() {
  436. var routes = availableRoutes();
  437. // Remove the 'enabled' class from all directions
  438. [ dom.controlsLeft, dom.controlsRight, dom.controlsUp, dom.controlsDown ].forEach( function( node ) {
  439. removeClass( node, 'enabled' );
  440. } )
  441. if( routes.left ) addClass( dom.controlsLeft, 'enabled' );
  442. if( routes.right ) addClass( dom.controlsRight, 'enabled' );
  443. if( routes.up ) addClass( dom.controlsUp, 'enabled' );
  444. if( routes.down ) addClass( dom.controlsDown, 'enabled' );
  445. }
  446. /**
  447. * Determine what available routes there are for navigation.
  448. *
  449. * @return {Object} containing four booleans: left/right/up/down
  450. */
  451. function availableRoutes() {
  452. var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR );
  453. var verticalSlides = document.querySelectorAll( VERTICAL_SLIDES_SELECTOR );
  454. return {
  455. left: indexh > 0,
  456. right: indexh < horizontalSlides.length - 1,
  457. up: indexv > 0,
  458. down: indexv < verticalSlides.length - 1
  459. };
  460. }
  461. /**
  462. * Reads the current URL (hash) and navigates accordingly.
  463. */
  464. function readURL() {
  465. // Break the hash down to separate components
  466. var bits = window.location.hash.slice(2).split('/');
  467. // Read the index components of the hash
  468. indexh = bits[0] ? parseInt( bits[0] ) : 0;
  469. indexv = bits[1] ? parseInt( bits[1] ) : 0;
  470. navigateTo( indexh, indexv );
  471. }
  472. /**
  473. * Updates the page URL (hash) to reflect the current
  474. * state.
  475. */
  476. function writeURL() {
  477. if( config.history ) {
  478. var url = '/';
  479. // Only include the minimum possible number of components in
  480. // the URL
  481. if( indexh > 0 || indexv > 0 ) url += indexh;
  482. if( indexv > 0 ) url += '/' + indexv;
  483. window.location.hash = url;
  484. }
  485. }
  486. /**
  487. * Navigate to the next slide fragment.
  488. *
  489. * @return {Boolean} true if there was a next fragment,
  490. * false otherwise
  491. */
  492. function nextFragment() {
  493. // Vertical slides:
  494. if( document.querySelector( VERTICAL_SLIDES_SELECTOR + '.present' ) ) {
  495. var verticalFragments = document.querySelectorAll( VERTICAL_SLIDES_SELECTOR + '.present .fragment:not(.visible)' );
  496. if( verticalFragments.length ) {
  497. addClass( verticalFragments[0], 'visible' );
  498. return true;
  499. }
  500. }
  501. // Horizontal slides:
  502. else {
  503. var horizontalFragments = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.present .fragment:not(.visible)' );
  504. if( horizontalFragments.length ) {
  505. addClass( horizontalFragments[0], 'visible' );
  506. return true;
  507. }
  508. }
  509. return false;
  510. }
  511. /**
  512. * Navigate to the previous slide fragment.
  513. *
  514. * @return {Boolean} true if there was a previous fragment,
  515. * false otherwise
  516. */
  517. function previousFragment() {
  518. // Vertical slides:
  519. if( document.querySelector( VERTICAL_SLIDES_SELECTOR + '.present' ) ) {
  520. var verticalFragments = document.querySelectorAll( VERTICAL_SLIDES_SELECTOR + '.present .fragment.visible' );
  521. if( verticalFragments.length ) {
  522. removeClass( verticalFragments[ verticalFragments.length - 1 ], 'visible' );
  523. return true;
  524. }
  525. }
  526. // Horizontal slides:
  527. else {
  528. var horizontalFragments = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.present .fragment.visible' );
  529. if( horizontalFragments.length ) {
  530. removeClass( horizontalFragments[ horizontalFragments.length - 1 ], 'visible' );
  531. return true;
  532. }
  533. }
  534. return false;
  535. }
  536. function hasClass( node, klass ) {
  537. return !!node.className.match( klass );
  538. }
  539. function addClass( node, klass ) {
  540. if( !hasClass( node, klass ) ) {
  541. node.className += ' ' + klass;
  542. }
  543. }
  544. function removeClass( node, klass ) {
  545. node.className = node.className.replace( klass, '' );
  546. }
  547. /**
  548. * Triggers a navigation to the specified indices.
  549. *
  550. * @param {Number} h The horizontal index of the slide to show
  551. * @param {Number} v The vertical index of the slide to show
  552. */
  553. function navigateTo( h, v ) {
  554. indexh = h === undefined ? indexh : h;
  555. indexv = v === undefined ? indexv : v;
  556. slide();
  557. }
  558. function navigateLeft() {
  559. // Prioritize hiding fragments
  560. if( overviewIsActive() || previousFragment() === false ) {
  561. indexh --;
  562. indexv = 0;
  563. slide();
  564. }
  565. }
  566. function navigateRight() {
  567. // Prioritize revealing fragments
  568. if( overviewIsActive() || nextFragment() === false ) {
  569. indexh ++;
  570. indexv = 0;
  571. slide();
  572. }
  573. }
  574. function navigateUp() {
  575. // Prioritize hiding fragments
  576. if( overviewIsActive() || previousFragment() === false ) {
  577. indexv --;
  578. slide();
  579. }
  580. }
  581. function navigateDown() {
  582. // Prioritize revealing fragments
  583. if( overviewIsActive() || nextFragment() === false ) {
  584. indexv ++;
  585. slide();
  586. }
  587. }
  588. var stepT=0;
  589. function scrollStep(e){
  590. clearTimeout(stepT);
  591. stepT=setTimeout(function(){
  592. if(e.detail>0){
  593. if(availableRoutes().down){
  594. navigateDown()
  595. }else{
  596. navigateRight()
  597. }
  598. }else{
  599. if(availableRoutes().up){
  600. navigateUp()
  601. }else{
  602. navigateLeft()
  603. }
  604. }
  605. },200);
  606. }
  607. // Expose some methods publicly
  608. return {
  609. initialize: initialize,
  610. navigateTo: navigateTo,
  611. navigateLeft: navigateLeft,
  612. navigateRight: navigateRight,
  613. navigateUp: navigateUp,
  614. navigateDown: navigateDown
  615. };
  616. })();