mirror of
https://github.com/Mibew/java.git
synced 2025-04-09 14:20:13 +03:00
27 lines
571 B
JavaScript
27 lines
571 B
JavaScript
/**
|
|
* @preserve This file is part of Mibew Messenger project.
|
|
* http://mibew.org
|
|
*
|
|
* Copyright (c) 2005-2011 Mibew Messenger Community
|
|
* License: http://mibew.org/license.php
|
|
*/
|
|
|
|
(function(Mibew){
|
|
|
|
/**
|
|
* @namespace Holds application region constructors
|
|
*/
|
|
Mibew.Regions = {};
|
|
|
|
/**
|
|
* @namespace Holds application layouts constructors
|
|
*/
|
|
Mibew.Layouts = {};
|
|
|
|
/**
|
|
* Create application instance.
|
|
* @type Backbone.Marionette.Application
|
|
*/
|
|
Mibew.Application = new Backbone.Marionette.Application();
|
|
|
|
})(Mibew); |