File: js/mootor.js
/**
* Mootor public objects
*
* @module Mootor
* @author Emilio Mariscal (emi420 [at] gmail.com)
* @author Martin Szyszlican (martinsz [at] gmail.com)
*/
(function () {
"use strict";
var Mootor,
m;
Mootor = {
// code here
};
// Static global objects
/**
* m public global object
* @class window.m
* @static
*/
m = {
// code here
};
// Make it public!
window.Mootor = Mootor;
window.m = m;
}());