Subversion Repositories oidplus

Rev

Rev 1182 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1182 Rev 1349
Line 21... Line 21...
21
// since some users might have a problem with that (in regards privacy of their IP address etc.)
21
// since some users might have a problem with that (in regards privacy of their IP address etc.)
22
// So, the OIDplus webserver will act as proxy.
22
// So, the OIDplus webserver will act as proxy.
23
 
23
 
24
// see https://polyfill.io/v3/url-builder/
24
// see https://polyfill.io/v3/url-builder/
25
const REQUIRED_POLYFILLS = array(
25
const REQUIRED_POLYFILLS = array(
26
        // Internet Explorer for various AJAX calls
26
        // For various AJAX calls
27
        'fetch',
27
        'fetch',
28
        'URL',
28
        'URL',
29
 
29
 
30
        // Internet Explorer for OIDplusPagePublicWhois.js, OIDplusPageAdminSoftwareUpdate.js, and OIDplusPageAdminColors.js
30
        // For OIDplusPagePublicWhois.js, OIDplusPageAdminSoftwareUpdate.js, and OIDplusPageAdminColors.js
31
        'String.prototype.includes',
31
        'String.prototype.includes',
32
 
32
 
33
        // Internet Explorer for TinyMCE if it is included inside oidplus.min.js.php ( https://github.com/tinymce/tinymce/blob/5c1702a119e683f93e03ecc2231f11d17ce57395/modules/tinymce/src/core/main/ts/api/EditorManager.ts#L271 )
33
        // For TinyMCE if it is included inside oidplus.min.js.php ( https://github.com/tinymce/tinymce/blob/5c1702a119e683f93e03ecc2231f11d17ce57395/modules/tinymce/src/core/main/ts/api/EditorManager.ts#L271 )
34
        'document.currentScript'
34
        'document.currentScript'
35
);
35
);
36
 
36
 
37
const MINIFY_POLYFILL = true; // TODO: put into baseconfig?
37
const MINIFY_POLYFILL = true; // TODO: put into baseconfig?
38
 
38