From 3bfea85585ec3e8ac1c99188159f9920d094ee09 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Sun, 19 Dec 2010 16:59:30 -0800 Subject: [PATCH] update TODO and misc cleanup --- TODO | 12 ++++-------- assets/gitter.js | 4 ++-- assets/store.js | 6 +++--- 3 files changed, 9 insertions(+), 13 deletions(-) diff --git a/TODO b/TODO index 3aac7c1..5ad829f 100644 --- a/TODO +++ b/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 diff --git a/assets/gitter.js b/assets/gitter.js index 1866161..2928383 100644 --- a/assets/gitter.js +++ b/assets/gitter.js @@ -8,7 +8,7 @@ // TODO: // - authentication and write APIs -(function() { +;(function() { var global = this , isBrowser = 'document' in global , ie @@ -640,4 +640,4 @@ } } } -}()) +}()); diff --git a/assets/store.js b/assets/store.js index 02aa969..f3b82f8 100644 --- a/assets/store.js +++ b/assets/store.js @@ -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() } -}()) +}()); \ No newline at end of file