mibew/src/mibew/js/source/default/init.js
2014-08-18 15:42:27 +04:00

72 lines
1.9 KiB
JavaScript

/*!
* This file is a part of Mibew Messenger.
*
* Copyright 2005-2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @namespace Application namespace
*/
var Mibew = {};
(function(Mibew, Backbone, Handlebars){
// Use Backbone.Marionette with handlebars.js
Backbone.Marionette.TemplateCache.prototype.compileTemplate = function(rawTemplate) {
return Handlebars.compile(rawTemplate);
}
// Use all handlebars template as partials too
// We does not use Handlebars.partials property because of it can be changed
// in latter versions of Handlebars.js
for (var index in Handlebars.templates) {
if (!Handlebars.templates.hasOwnProperty(index)) {
continue;
}
Handlebars.registerPartial(index, Handlebars.templates[index]);
}
/**
* @namespace Holds Backbone Models constructors
*/
Mibew.Models = {};
/**
* @namespace Holds Backbone Collections constructors
*/
Mibew.Collections = {};
/**
* @namespace Holds Backbone Views constructors
*/
Mibew.Views = {};
/**
* @namespace Holds objects instances
*/
Mibew.Objects = {};
/**
* @namespace Holds Models instances
*/
Mibew.Objects.Models = {};
/**
* @namespace Holds Collections instances
*/
Mibew.Objects.Collections = {};
})(Mibew, Backbone, Handlebars);