diff --git a/ui/TODO.otl b/ui/TODO.otl index 946a3017..34960abd 100755 --- a/ui/TODO.otl +++ b/ui/TODO.otl @@ -93,8 +93,8 @@ Roadmap -[_] 28% Gen 3 current todo - [_] 57% High priority +[_] 29% Gen 3 current todo + [_] 58% High priority [_] 33% mormalize ribbons -- top-align sorted chunks [X] basic mechanics | splitData(...) @@ -197,7 +197,8 @@ Roadmap | centerView() fixes this, but only for the current image... [_] BUG: sometimes images.json folder is created... | can't repeat this yet, and seen only once... - [_] rework the marks.js/modes.js to enable multi-level ribbon cropping... + [_] BUG: cropping in single image mode will change image scale... + | likely a problem with reloadViewer(...) [_] 0% full archive index [_] segmented loading of images and data [_] ribbon separation @@ -322,6 +323,7 @@ Roadmap [_] remove extra and repetitive actions [_] caching config [_] side-by side view... + [X] rework the marks.js/modes.js to enable multi-level ribbon cropping... [X] add indicator to ribbon up/down navigation in full screen... | this might be a number or some kind of animation... [X] BUG: scaling #2 in single image mode fits image to screen on wide screens diff --git a/ui/marks.js b/ui/marks.js index c2666895..efe560a5 100755 --- a/ui/marks.js +++ b/ui/marks.js @@ -53,7 +53,7 @@ var toggleMarkedOnlyView = createCSSClassToggler( // prevent mixing marked-only and single-ribbon modes... // XXX is there a more generic way to do this??? // ..without including direct mode dependencies? - if(action == 'on' && toggleSingleImageMode('?') == 'on'){ + if(action == 'on' && toggleSingleRibbonMode('?') == 'on'){ return false } },