mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-04-27 14:57:40 +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));
|
result.push(str.slice(lastidx));
|
||||||
return result.join("")
|
return result.join("")
|
||||||
}
|
}
|
||||||
})();
|
}());
|
||||||
|
|
||||||
var CodeHighlighter = { styleSets : new Array };
|
var CodeHighlighter = { styleSets : new Array };
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -89,4 +89,4 @@ var Storage = function (type) {
|
||||||
if (!window.localStorage) window.localStorage = new Storage('local');
|
if (!window.localStorage) window.localStorage = new Storage('local');
|
||||||
if (!window.sessionStorage) window.sessionStorage = new Storage('session');
|
if (!window.sessionStorage) window.sessionStorage = new Storage('session');
|
||||||
|
|
||||||
})();
|
}());
|
||||||
|
|
|
||||||
|
|
@ -32,4 +32,4 @@
|
||||||
// Provide some basic currying to the user
|
// Provide some basic currying to the user
|
||||||
return data ? fn( data ) : fn;
|
return data ? fn( data ) : fn;
|
||||||
};
|
};
|
||||||
})();
|
}());
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue