Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 1115 → Rev 1116

/trunk/polyfill.min.js.php
22,7 → 22,7
// So, the OIDplus webserver will act as proxy.
 
// see https://polyfill.io/v3/url-builder/
define('REQUIRED_POLYFILLS', array(
const REQUIRED_POLYFILLS = array(
// Internet Explorer for various AJAX calls
'fetch',
'URL',
32,11 → 32,11
 
// 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 )
'document.currentScript'
));
);
 
define('MINIFY_POLYFILL', true); // TODO: put into baseconfig?
const MINIFY_POLYFILL = true; // TODO: put into baseconfig?
 
define('POLYFILL_CACHE_MAX_AGE', 24*60*60); // 1 day, TODO: put into baseconfig?
const POLYFILL_CACHE_MAX_AGE = 24 * 60 * 60; // 1 day, TODO: put into baseconfig?
 
# ---