dlueth
7/19/2013 - 9:03 PM

Base skeleton for any qoopido.js functions

Base skeleton for any qoopido.js functions

;(function(definition) {
	window.qoopido.register([ID of function, e.g. "function/merge"], definition, [Array of dependencies]);
}(function(modules, shared, namespace, navigator, window, document, undefined) {
	'use strict';

	return function([argument 1, argument 2, ...]) {
	};
}));