first changes to 1 window on Linux
This commit is contained in:
parent
682c60df2d
commit
c6220b1dc1
25 changed files with 346 additions and 69 deletions
|
@ -13,6 +13,15 @@ function(jQuery, Paths, URI, HostApp, Cache) {
|
|||
this.cache = new Cache();
|
||||
}
|
||||
|
||||
|
||||
Core.prototype.show = function() {
|
||||
if (this.body) $(this.body).show();
|
||||
}
|
||||
|
||||
Core.prototype.hide = function() {
|
||||
if (this.body) $(this.body).hide();
|
||||
}
|
||||
|
||||
Core.prototype.getTemplate = function() {
|
||||
|
||||
if(this.template == "undefined") {
|
||||
|
|
Reference in a new issue