mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-09 15:35:47 +01:00
fixes to get nodebb to at least load on IE
This commit is contained in:
@@ -158,7 +158,7 @@ var ajaxify = {};
|
|||||||
|
|
||||||
var scripts = [],
|
var scripts = [],
|
||||||
script,
|
script,
|
||||||
children_nodes = body_el.childNodes,
|
children_nodes = $(body_el).children(),
|
||||||
child,
|
child,
|
||||||
i;
|
i;
|
||||||
|
|
||||||
|
|||||||
@@ -230,7 +230,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function makeRegex(block) {
|
function makeRegex(block) {
|
||||||
return new RegExp("<!-- BEGIN " + block + " -->[^]*<!-- END " + block + " -->", 'g');
|
return new RegExp("<!-- BEGIN " + block + " -->[\\s\\S]*<!-- END " + block + " -->", 'g');
|
||||||
}
|
}
|
||||||
|
|
||||||
function getBlock(regex, block, template) {
|
function getBlock(regex, block, template) {
|
||||||
@@ -299,7 +299,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (namespace) {
|
if (namespace) {
|
||||||
var regex = new RegExp("{" + namespace + "[^]*?}", 'g');
|
var regex = new RegExp("{" + namespace + "[\\s\\S]*?}", 'g');
|
||||||
template = template.replace(regex, '');
|
template = template.replace(regex, '');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,17 +1,17 @@
|
|||||||
{
|
{
|
||||||
"custom_mapping": {
|
"custom_mapping": {
|
||||||
"admin/testing/categories[^]*": "admin/testing/categories",
|
"admin/testing/categories.*": "admin/testing/categories",
|
||||||
"admin/topics[^]*": "admin/topics",
|
"admin/topics.*": "admin/topics",
|
||||||
"admin/categories[^]*": "admin/categories",
|
"admin/categories.*": "admin/categories",
|
||||||
"admin/users[^]*": "admin/users",
|
"admin/users.*": "admin/users",
|
||||||
"admin/redis[^]*": "admin/redis",
|
"admin/redis.*": "admin/redis",
|
||||||
"admin/index[^]*": "admin/index",
|
"admin/index.*": "admin/index",
|
||||||
"admin/themes[^]*": "admin/themes",
|
"admin/themes.*": "admin/themes",
|
||||||
"admin/plugins[^]*": "admin/plugins",
|
"admin/plugins.*": "admin/plugins",
|
||||||
"^admin/settings[^]*": "admin/settings",
|
"^admin/settings.*": "admin/settings",
|
||||||
"admin/twitter[^]*": "admin/twitter",
|
"admin/twitter.*": "admin/twitter",
|
||||||
"admin/facebook[^]*": "admin/facebook",
|
"admin/facebook.*": "admin/facebook",
|
||||||
"admin/gplus[^]*": "admin/gplus",
|
"admin/gplus.*": "admin/gplus",
|
||||||
"admin/motd/?$": "admin/motd",
|
"admin/motd/?$": "admin/motd",
|
||||||
"admin/groups/?$": "admin/groups",
|
"admin/groups/?$": "admin/groups",
|
||||||
"install/?$": "install/mail",
|
"install/?$": "install/mail",
|
||||||
@@ -22,19 +22,19 @@
|
|||||||
"users/latest": "users",
|
"users/latest": "users",
|
||||||
"users/sort-reputation": "users",
|
"users/sort-reputation": "users",
|
||||||
"users/search": "users",
|
"users/search": "users",
|
||||||
"user[^]*edit": "accountedit",
|
"user.*edit": "accountedit",
|
||||||
"user[^]*following": "following",
|
"user.*following": "following",
|
||||||
"user[^]*followers": "followers",
|
"user.*followers": "followers",
|
||||||
"user[^]*settings": "accountsettings",
|
"user.*settings": "accountsettings",
|
||||||
"user[^]*favourites": "favourites",
|
"user.*favourites": "favourites",
|
||||||
"user/[^]*": "account",
|
"user/.*": "account",
|
||||||
|
|
||||||
"recent": "recent",
|
"recent": "recent",
|
||||||
"unread": "unread",
|
"unread": "unread",
|
||||||
"popular": "category",
|
"popular": "category",
|
||||||
"active": "category",
|
"active": "category",
|
||||||
"search": "search",
|
"search": "search",
|
||||||
"reset/[^]*": "reset_code",
|
"reset/.*": "reset_code",
|
||||||
"reset": "reset"
|
"reset": "reset"
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user