1 // ========================================================================== 2 // Project: The M-Project - Mobile HTML5 Application Framework 3 // Copyright: �2010 M-Way Solutions GmbH. All rights reserved. 4 // Creator: Dominik 5 // Date: 26.10.2010 6 // License: Dual licensed under the MIT or GPL Version 2 licenses. 7 // http://github.com/mwaylabs/The-M-Project/blob/master/MIT-LICENSE 8 // http://github.com/mwaylabs/The-M-Project/blob/master/GPL-LICENSE 9 // ========================================================================== 10 11 /** 12 * @namespace 13 * The The-M-Project namespace. 14 * 15 * All The-M-Project methods and functions are defined inside of this namespace. 16 */ 17 var M = M || {}; 18 19 /** 20 * These command is used by the build tool to control the load order. 21 * It does nothing on the client side. 22 */ 23 var m_require = m_require || function require() {}; 24 25 /** 26 * global constant to write YES instead of true 27 */ 28 var YES = true; 29 /** 30 * global constant to write NO instead of false 31 */ 32 var NO = false;