updated todo and fixed default browser load path...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2013-06-15 20:08:23 +04:00
parent 2895f07589
commit 999914633f
3 changed files with 14 additions and 2 deletions

View File

@ -93,6 +93,18 @@ Roadmap
[_] 29% Gen 3 current todo [_] 29% Gen 3 current todo
[_] 58% High priority [_] 58% High priority
% Priority tasks
full archive index
ribbon separation
| split ribbon into manageable chunks
|
| this can be done naturally by:
| - date
| - event
| - tag
index and group ALL files in an archive
import metadata
real GIDs
[_] BUG: align problems are back... [_] BUG: align problems are back...
| default data set (browser/images.js) same images #4 (going | default data set (browser/images.js) same images #4 (going
| from right) & #5 (going from left) of 18 in the first ribbon | from right) & #5 (going from left) of 18 in the first ribbon

View File

@ -674,7 +674,7 @@ function convertDataGen1(data, cmp){
} }
cmp = cmp == null ? cmp = cmp == null ?
function(a, b){ function(a, b){
return imageDateCmp(a, b, res.images) return imageDateCmp(a, b, null, res.images)
} }
: cmp : cmp
var ribbons = res.data.ribbons var ribbons = res.data.ribbons

View File

@ -237,8 +237,8 @@ $(function(){
// legacy default data... // legacy default data...
} else { } else {
DATA = convertDataGen1(image_list) DATA = convertDataGen1(image_list)
DATA = DATA.data
IMAGES = DATA.images IMAGES = DATA.images
DATA = DATA.data
reloadViewer() reloadViewer()
} }
var loading = $.Deferred().resolve() var loading = $.Deferred().resolve()