Skip to content

Instantly share code, notes, and snippets.

View tsmallfield's full-sized avatar

Toru OBARA / tsmallfield tsmallfield

View GitHub Profile
@tsmallfield
tsmallfield / loader.footer
Created December 10, 2012 10:40
loader.js
@tsmallfield
tsmallfield / loader.footer
Created December 10, 2012 10:40
loader.js
;(function(win, doc, ns) {
"use strict";
/////////////////////////////////////////////////
// Dependencies
var Browser = ns.env.Browser,
MouseEvent = ns.events.MouseEvent;
@tsmallfield
tsmallfield / Cookie
Created December 5, 2012 09:13
app.utils
@tsmallfield
tsmallfield / ScrollManager
Created December 5, 2012 09:11
app.scroll
;(function(win, doc, ns) {
"use strict";
/////////////////////////////////////////////////
// Create namespace if unavailable
ns.scroll || (ns.scroll = {});
/////////////////////////////////////////////////
@tsmallfield
tsmallfield / AbstractScene
Created December 5, 2012 09:11
app.scene
;(function(win, doc, ns) {
"use strict";
/////////////////////////////////////////////////
// Create namespace if unavailable
ns.scene || (ns.scene = {});
/////////////////////////////////////////////////
@tsmallfield
tsmallfield / Notification
Created December 5, 2012 09:10
app.notif
;(function(win, doc, ns) {
"use strict";
/////////////////////////////////////////////////
// Create namespace if unavailable
ns.notif || (ns.notif = {});
/////////////////////////////////////////////////
@tsmallfield
tsmallfield / APIList
Created December 5, 2012 09:09
app.net
;(function(win, doc, ns) {
"use strict";
/////////////////////////////////////////////////
// Create namespace if unavailable
ns.net || (ns.net = {});
/////////////////////////////////////////////////
@tsmallfield
tsmallfield / CharCode
Created December 5, 2012 09:07
app.keyboard
;(function(win, doc, ns) {
"use strict";
/////////////////////////////////////////////////
// Create namespace if unavailable
ns.keyboard || (ns.keyboard = {});
/////////////////////////////////////////////////
;(function(win, doc, ns) {
"use strict";
/////////////////////////////////////////////////
// Create Namespace
ns.image || (ns.image = {});
/////////////////////////////////////////////////