update TODO and misc cleanup

This commit is contained in:
Sami Samhuri 2010-12-19 16:59:30 -08:00
parent 76531614fa
commit 3bfea85585
3 changed files with 9 additions and 13 deletions

12
TODO
View file

@ -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

View file

@ -8,7 +8,7 @@
// TODO:
// - authentication and write APIs
(function() {
;(function() {
var global = this
, isBrowser = 'document' in global
, ie
@ -640,4 +640,4 @@
}
}
}
}())
}());

View file

@ -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()
}
}())
}());