Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View nie-xin's full-sized avatar

NIE Xin nie-xin

View GitHub Profile
@nie-xin
nie-xin / atom_sync.js
Created February 13, 2016 08:49
atom sync
// My atom setting sync
@nie-xin
nie-xin / module_pattern_init.js
Created August 22, 2016 13:54 — forked from nathansmith/module_pattern_init.js
Init + Module Pattern JS
// JS Module Pattern:
// http://j.mp/module-pattern
// Redefine: $, window, document, undefined.
var APP = (function($, window, document, undefined) {
// Automatically calls all functions in APP.init
$(document).ready(function() {
APP.go();
});