mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
update TODO and misc cleanup
This commit is contained in:
parent
76531614fa
commit
3bfea85585
3 changed files with 9 additions and 13 deletions
12
TODO
12
TODO
|
|
@ -1,7 +1,9 @@
|
|||
TODO
|
||||
====
|
||||
|
||||
* use LABjs
|
||||
* promote JS links on project pages (the only ones that mention javascript so far!)
|
||||
|
||||
* link to github finder on project pages
|
||||
|
||||
* last commit date
|
||||
|
||||
|
|
@ -9,12 +11,6 @@ TODO
|
|||
|
||||
* favicon
|
||||
|
||||
* offline cache
|
||||
* fix display issues in ie6
|
||||
|
||||
* semantic markup (section, nav, header, footer, etc)
|
||||
|
||||
* promote JS links on project pages (the only ones that mention javascript so far!)
|
||||
|
||||
* link to github finder on project pages
|
||||
|
||||
* fix display issues in ie6
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
// TODO:
|
||||
// - authentication and write APIs
|
||||
|
||||
(function() {
|
||||
;(function() {
|
||||
var global = this
|
||||
, isBrowser = 'document' in global
|
||||
, ie
|
||||
|
|
@ -640,4 +640,4 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}())
|
||||
}());
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
(function() {
|
||||
;(function() {
|
||||
var global = this
|
||||
if (typeof localStorage !== 'undefined') {
|
||||
global.createObjectStore = function(namespace) {
|
||||
|
|
@ -29,7 +29,7 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
global.ObjectStore = global.createObjectStore('default')
|
||||
global.ObjectStore = createObjectStore('default')
|
||||
} else {
|
||||
// Create an in-memory store, should probably fall back to cookies
|
||||
global.createObjectStore = function() {
|
||||
|
|
@ -43,4 +43,4 @@
|
|||
}
|
||||
global.ObjectStore = createObjectStore()
|
||||
}
|
||||
}())
|
||||
}());
|
||||
Loading…
Reference in a new issue