mirror of
https://github.com/Mibew/mibew.git
synced 2025-06-03 23:56:15 +03:00
26 lines
527 B
JavaScript
26 lines
527 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 instances of control models
|
|
*/
|
|
Mibew.Objects.Models.Controls = {};
|
|
|
|
/**
|
|
* @namespace Holds instances of status models
|
|
*/
|
|
Mibew.Objects.Models.Status = {};
|
|
|
|
})(Mibew); |