mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-16 19:41:45 +02:00
The results of Guy Bedford's help
Egroupware will load into addressbook & show rows Most base files should be bundled server-side & included rollup.config.js controls the process Still needs work: - consider /dist directory for best-practice - cleanup - other built-in apps - EPL / external apps need Guy's multi-stage work
This commit is contained in:
@ -24,6 +24,7 @@ window.fw_base = (function(){ "use strict"; return Class.extend(
|
||||
* @returns {undefined}
|
||||
*/
|
||||
init: function (_sidemenuId, _tabsId, _webserverUrl, _sideboxSizeCallback){
|
||||
window.framework = this;
|
||||
/* Get the base div */
|
||||
this.sidemenuDiv = document.getElementById(_sidemenuId);
|
||||
this.tabsDiv = document.getElementById(_tabsId);
|
||||
@ -1380,4 +1381,4 @@ window.fw_base = (function(){ "use strict"; return Class.extend(
|
||||
gauge.width(this.firstload_animation_gauge+"%");
|
||||
if (_gauge == 100) window.setTimeout(function(){jQuery('#egw_fw_firstload').remove();},1000);
|
||||
}
|
||||
});}).call(this);
|
||||
});}).call(window);
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
import '../egw_action/egw_action_common.js';
|
||||
import '../jsapi/egw_inheritance.js';
|
||||
import '../etemplate/etemplate2.js'; // otherwise et2_load json-response-handler is not (yet) available
|
||||
import '../etemplate/etemplate2'; // otherwise et2_load json-response-handler is not (yet) available
|
||||
|
||||
/**
|
||||
* Constants definition
|
||||
@ -378,4 +378,4 @@ window.fw_browser = (function(){ "use strict"; return Class.extend(
|
||||
{
|
||||
this.browse('about:blank', this.type == EGW_BROWSER_TYPE_IFRAME);
|
||||
}
|
||||
});}).call(this);
|
||||
});}).call(window);
|
||||
|
@ -16,6 +16,10 @@
|
||||
framework.fw_classes;
|
||||
egw_inheritance.js;
|
||||
*/
|
||||
|
||||
import "../../../vendor/bower-asset/jquery/dist/jquery.min.js";
|
||||
import "../jquery/jquery.noconflict.js";
|
||||
import "../../../vendor/bower-asset/jquery-ui/jquery-ui.js";
|
||||
import './fw_base.js';
|
||||
import './fw_browser.js';
|
||||
import './fw_ui.js';
|
||||
|
@ -12,6 +12,10 @@
|
||||
/api/js/jquery/mousewheel/mousewheel.js;
|
||||
egw_inheritance.js;
|
||||
*/
|
||||
|
||||
import "../../../vendor/bower-asset/jquery/dist/jquery.min.js";
|
||||
import "../jquery/jquery.noconflict.js";
|
||||
import "../../../vendor/bower-asset/jquery-ui/jquery-ui.js";
|
||||
import '../jsapi/egw_inheritance.js';
|
||||
|
||||
/**
|
||||
@ -189,7 +193,7 @@ window.fw_ui_sidemenu_entry = (function(){ "use strict"; return Class.extend(
|
||||
jQuery(this.headerDiv).remove();
|
||||
jQuery(this.contentDiv).remove();
|
||||
}
|
||||
});}).call(this);
|
||||
});}).call(window);
|
||||
|
||||
/**
|
||||
*
|
||||
@ -290,7 +294,7 @@ window.fw_ui_sidemenu = (function(){ "use strict"; return Class.extend(
|
||||
|
||||
this.entries = new Array();
|
||||
}
|
||||
});}).call(this);
|
||||
});}).call(window);
|
||||
|
||||
/**
|
||||
* Class: egw_fw_ui_tab
|
||||
|
Reference in New Issue
Block a user