This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
// calculate difference between zero and window.onload | |
window.onload = function () { | |
var stop = new Date(); | |
document.getElementById("content").style.display = "block"; | |
document.getElementById("ms").innerHTML = (stop - start); | |
}; | |
</script> | |
... | |
<script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"color_scheme": "Packages/Color Scheme - Default/Solarized (Dark).tmTheme", | |
"draw_white_space": "selection", | |
"file_exclude_patterns": | |
[ | |
"*.png", | |
"*.gif", | |
"*.swp", | |
"*.scssc", | |
".DS_Store", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Immediately-Invoked Function Expression (IIFE) [Ben Alman Blog Post] | |
(http://benalman.com/news/2010/11/immediately-invoked-function-expression/) | |
that locally passes in `jQuery`, the `window` object, the `document` object, | |
and an `undefined` variable. The `jQuery`, `window` and `document` objects | |
are passed in locally to improve performance (JavaScript first searches for | |
a variable match within the local variables set before searching the global | |
variables set). All of the global variables are also passed in locally to | |
be minifier friendly. `undefined` can be passed in locally, because it is not | |
a reserved word in JavaScript |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* ******************************* | |
* XOLOTL jQuery-lightbox Plugin * | |
* ******************************* | |
* @author Ingo Fahrentholz * | |
* @since Version 0.1.0 * | |
* ******************************* | |
*/ | |
!function(exports, $, undefined) { |
NewerOlder