mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-27 08:19:45 +01:00
adding ES6 Promise shim for IE 10/11 and other old browsers
This commit is contained in:
commit
a0196e0321
9
phpgwapi/js/es6-promise.min.js
vendored
Normal file
9
phpgwapi/js/es6-promise.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -14,7 +14,8 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
/*egw:uses
|
/*egw:uses
|
||||||
egw_inheritance;
|
egw_inheritance;
|
||||||
|
/phpgwapi/js/es6-promise.min.js;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -147,7 +148,7 @@ var AppJS = Class.extend(
|
|||||||
|
|
||||||
// Highlights the favorite based on initial list state
|
// Highlights the favorite based on initial list state
|
||||||
this.highlight_favorite();
|
this.highlight_favorite();
|
||||||
|
|
||||||
// Initialize egw tutorial sidebox
|
// Initialize egw tutorial sidebox
|
||||||
this.egwTutorial_init();
|
this.egwTutorial_init();
|
||||||
},
|
},
|
||||||
@ -961,7 +962,7 @@ var AppJS = Class.extend(
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Get json data for videos from the given url
|
* Get json data for videos from the given url
|
||||||
*
|
*
|
||||||
* @return {Promise, object} return Promise, json object as resolved result and error message in case of failure
|
* @return {Promise, object} return Promise, json object as resolved result and error message in case of failure
|
||||||
*/
|
*/
|
||||||
egwTutorialGetData: function(){
|
egwTutorialGetData: function(){
|
||||||
@ -975,23 +976,23 @@ var AppJS = Class.extend(
|
|||||||
}).sendRequest();
|
}).sendRequest();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create and Render etemplate2 for egroupware tutorial
|
* Create and Render etemplate2 for egroupware tutorial
|
||||||
* sidebox option. The .xet file is stored in etemplate/templates/default/egw_tutorials
|
* sidebox option. The .xet file is stored in etemplate/templates/default/egw_tutorials
|
||||||
*
|
*
|
||||||
* @description tutorials json object should have the following structure:
|
* @description tutorials json object should have the following structure:
|
||||||
* object:
|
* object:
|
||||||
* {
|
* {
|
||||||
* [app name]:{
|
* [app name]:{
|
||||||
* [language tag]:[
|
* [language tag]:[
|
||||||
* {src:"",thumbnail:"",title:"",desc:""}
|
* {src:"",thumbnail:"",title:"",desc:""}
|
||||||
* ]
|
* ]
|
||||||
* }
|
* }
|
||||||
* }
|
* }
|
||||||
*
|
*
|
||||||
* *Note: "desc" and "title" are optional attributes, which "desc" would appears as tooltip for the video.
|
* *Note: "desc" and "title" are optional attributes, which "desc" would appears as tooltip for the video.
|
||||||
*
|
*
|
||||||
* example:
|
* example:
|
||||||
* {
|
* {
|
||||||
* "mail":{
|
* "mail":{
|
||||||
@ -1011,18 +1012,18 @@ var AppJS = Class.extend(
|
|||||||
//DOM container
|
//DOM container
|
||||||
var div = document.getElementById('egw_tutorial_'+egw.app_name()+'_sidebox');
|
var div = document.getElementById('egw_tutorial_'+egw.app_name()+'_sidebox');
|
||||||
if (!div) return;
|
if (!div) return;
|
||||||
|
|
||||||
// et2 object
|
// et2 object
|
||||||
var etemplate = new etemplate2 (div, false);
|
var etemplate = new etemplate2 (div, false);
|
||||||
var template = egw.webserverUrl+'/etemplate/templates/default/egw_tutorial.xet';
|
var template = egw.webserverUrl+'/etemplate/templates/default/egw_tutorial.xet';
|
||||||
|
|
||||||
this.egwTutorialGetData().then(function(_data){
|
this.egwTutorialGetData().then(function(_data){
|
||||||
var lang = egw.preference('lang');
|
var lang = egw.preference('lang');
|
||||||
var content = {content:{list:[]}};
|
var content = {content:{list:[]}};
|
||||||
if (_data && _data[egw.app_name()])
|
if (_data && _data[egw.app_name()])
|
||||||
{
|
{
|
||||||
if (!_data[egw.app_name()][lang]) lang = 'en';
|
if (!_data[egw.app_name()][lang]) lang = 'en';
|
||||||
if (typeof _data[egw.app_name()][lang] !='undefined'
|
if (typeof _data[egw.app_name()][lang] !='undefined'
|
||||||
&& _data[egw.app_name()][lang].length > 0)
|
&& _data[egw.app_name()][lang].length > 0)
|
||||||
{
|
{
|
||||||
for (var i=0;i < _data[egw.app_name()][lang].length;i++)
|
for (var i=0;i < _data[egw.app_name()][lang].length;i++)
|
||||||
@ -1031,7 +1032,7 @@ var AppJS = Class.extend(
|
|||||||
_data[egw.app_name()][lang][i]['onclick'] = 'app.'+egw.app_name()+'.egwTutorialPopup("'+tuid+'")';
|
_data[egw.app_name()][lang][i]['onclick'] = 'app.'+egw.app_name()+'.egwTutorialPopup("'+tuid+'")';
|
||||||
}
|
}
|
||||||
content.content.list = _data[egw.app_name()][lang];
|
content.content.list = _data[egw.app_name()][lang];
|
||||||
|
|
||||||
if (template.indexOf('.xet') >0)
|
if (template.indexOf('.xet') >0)
|
||||||
{
|
{
|
||||||
etemplate.load ('',template , content, function(){});
|
etemplate.load ('',template , content, function(){});
|
||||||
@ -1041,13 +1042,13 @@ var AppJS = Class.extend(
|
|||||||
etemplate.load (template, '', content);
|
etemplate.load (template, '', content);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
function(_err){
|
function(_err){
|
||||||
console.log(_err);
|
console.log(_err);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Open popup to show given tutorial id
|
* Open popup to show given tutorial id
|
||||||
* @param {string} _tuid tutorial object id
|
* @param {string} _tuid tutorial object id
|
||||||
|
Loading…
Reference in New Issue
Block a user