From b9b198fef75a0908bc66a29ff4fffe2bd0860a2b Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sat, 9 Feb 2013 03:08:48 +0400 Subject: [PATCH] minor edits... Signed-off-by: Alex A. Naanou --- TODO.otl | 7 ++++--- editor.js | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/TODO.otl b/TODO.otl index 0de1b9c..7124b44 100755 --- a/TODO.otl +++ b/TODO.otl @@ -6,13 +6,11 @@ [_] BUG: no drag threshold on excludedElements (TouchSwipe) | stalled... [_] 64% general todo + [_] BUG: loading a magazine with position set to 0 will align it incorrectly. [_] editor mode service page | a virtual page at the end of the magazine with magazine-specific | settings. | similar to the current configuration demo page. - [X] 100% add two main page themes (global/local applicable): - [X] light - [X] dark [_] 20% move some of the current configuration options to the magazine... [X] page align | global, magazine, article, page-set, page @@ -94,6 +92,9 @@ [_] BUG: href to existing anchors will mess up layout... | need to find out how can we disable anchor links from actually | going to the anchor... + [X] 100% add two main page themes (global/local applicable): + [X] light + [X] dark [X] add transition-duration editors to config page (a-la PAGES_IN_RIBBON)... | will help tuning the system,,, [X] BUG: jquery does not set background to none on detached elements... diff --git a/editor.js b/editor.js index 78bd4b2..bb23ed3 100755 --- a/editor.js +++ b/editor.js @@ -39,7 +39,7 @@ function loadMagazine(mag, position, bookmarks){ // the basic content (cover, article, article cover) function createBaseMagazine(title, cover, article){ removeMagazine() - var mag = loadMagazine(createMagazine(title, cover, article)) + var mag = loadMagazine(createMagazine(title, cover, article), 0, []) return mag }