More regexp fixes for mozilla5 compatibility.

This commit is contained in:
Florian Quèze 2011-07-06 13:03:49 +02:00
Родитель bee018862b
Коммит 32bcf99486
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -78,7 +78,7 @@ var joinChat = {
let label = document.createElement("label");
let text = field.label;
let match = /_(.)/(text);
let match = /_(.)/.exec(text);
if (match) {
label.setAttribute("accesskey", match[1]);
text = text.replace(/_/, "");

Просмотреть файл

@ -216,7 +216,7 @@ CommandsService.prototype = {
let matchResult;
if (aMessage[0] != "/" ||
!(matchResult = /^\/([a-z]+)(?: |$)([\s\S]*)/(aMessage)))
!(matchResult = /^\/([a-z]+)(?: |$)([\s\S]*)/.exec(aMessage)))
return false;
let [, name, args] = matchResult;