mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-15 19:24:21 +02:00
Get widget extra documentation working
This allows <Class>.md beside <Class>.ts where we can add additional documentation such as examples
This commit is contained in:
@ -282,7 +282,7 @@ window.app = {classes: {}};
|
||||
if (!gen_time_div.length) gen_time_div = jQuery('.pageGenTime');
|
||||
var gen_time_async = jQuery('.asyncIncludeTime').length > 0 ? jQuery('.asyncIncludeTime'):
|
||||
gen_time_div.append('<span class="asyncIncludeTime"></span>').find('.asyncIncludeTime');
|
||||
gen_time_async.text(egw.lang('async includes took %1s', (end_time-start_time)/1000));
|
||||
gen_time_async.text(egw.lang ? egw.lang('async includes took %1s', (end_time - start_time) / 1000) : 'async includes took ' + (end_time - start_time) / 1000);
|
||||
|
||||
// Make sure opener knows when we close - start a heartbeat
|
||||
try {
|
||||
|
Reference in New Issue
Block a user