Skip to content

Instantly share code, notes, and snippets.

View ifahrentholz's full-sized avatar
👨‍💻
workin

Ingo Fahrentholz ifahrentholz

👨‍💻
workin
View GitHub Profile
@ifahrentholz
ifahrentholz / ev.onload.js
Created July 27, 2013 14:57
Calculate difference between zero and window.onload
<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>
{
"color_scheme": "Packages/Color Scheme - Default/Solarized (Dark).tmTheme",
"draw_white_space": "selection",
"file_exclude_patterns":
[
"*.png",
"*.gif",
"*.swp",
"*.scssc",
".DS_Store",
@ifahrentholz
ifahrentholz / plugin-boilerplate.js
Last active December 18, 2015 09:59
jquery plugin boilerplate v2
/*
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
@ifahrentholz
ifahrentholz / jquery-plugin-boilerplate
Last active December 16, 2015 05:19
A boilerplate for jumpstarting jQuery plugins development
/**
* *******************************
* XOLOTL jQuery-lightbox Plugin *
* *******************************
* @author Ingo Fahrentholz *
* @since Version 0.1.0 *
* *******************************
*/
!function(exports, $, undefined) {