You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
398 B
18 lines
398 B
var isLocalStorage = false;
|
|
var mxLoadStylesheets = false;
|
|
|
|
function getUrlParam(param)
|
|
{
|
|
var result = (new RegExp(param + '=([^&]*)')).exec(window.location.search);
|
|
|
|
if (result != null && result.length > 0)
|
|
{
|
|
return decodeURIComponent(result[1].replace(/\+/g, '%20'));
|
|
}
|
|
|
|
return null;
|
|
};
|
|
|
|
var remoteMath = getUrlParam('remoteMath') == '1';
|
|
var fallbackFont = getUrlParam('fallbackFont');
|