mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-04-20 13:05:51 +00:00
lose the dog balls (function(){})() -> (function(){}())
This commit is contained in:
parent
35dea1a73c
commit
d7c004c937
3 changed files with 3 additions and 3 deletions
|
|
@ -123,7 +123,7 @@
|
|||
result.push(str.slice(lastidx));
|
||||
return result.join("")
|
||||
}
|
||||
})();
|
||||
}());
|
||||
|
||||
var CodeHighlighter = { styleSets : new Array };
|
||||
|
||||
|
|
|
|||
|
|
@ -89,4 +89,4 @@ var Storage = function (type) {
|
|||
if (!window.localStorage) window.localStorage = new Storage('local');
|
||||
if (!window.sessionStorage) window.sessionStorage = new Storage('session');
|
||||
|
||||
})();
|
||||
}());
|
||||
|
|
|
|||
|
|
@ -32,4 +32,4 @@
|
|||
// Provide some basic currying to the user
|
||||
return data ? fn( data ) : fn;
|
||||
};
|
||||
})();
|
||||
}());
|
||||
|
|
|
|||
Loading…
Reference in a new issue