add quo to build

This commit is contained in:
Bala Clark 2013-08-18 22:43:22 +02:00
commit 14564eef27
3 changed files with 11 additions and 6 deletions

View file

@ -2,7 +2,8 @@
"predef": [
"jQuery",
"Handlebars",
"Pixastic"
"Pixastic",
"Quo"
],
"forin": true,
"noarg": true,

View file

@ -99,8 +99,8 @@ var ComicBook = (function ($, $$) {
defaults.displayMode = 'single';
window.addEventListener("load",function() {
setTimeout(function() {
window.addEventListener('load', function () {
setTimeout(function () {
window.scrollTo(0, 1);
}, 0);
});
@ -801,8 +801,12 @@ var ComicBook = (function ($, $$) {
}
break;
case 'swipeLeft': side = 'right'; break;
case 'swipeRight': side = 'left'; break;
case 'swipeLeft':
side = 'right';
break;
case 'swipeRight':
side = 'left';
break;
default:
throw ComicBookException.INVALID_NAVIGATION_EVENT + ' ' + e.type;