Pārlūkot izejas kodu

Hmm, I guess we have to preserve the regexp object between execs.

pull/24/head
Ben Kurtovic pirms 12 gadiem
vecāks
revīzija
0e53bf5a11
1 mainītis faili ar 2 papildinājumiem un 1 dzēšanām
  1. +2
    -1
      static/js/potd.js

+ 2
- 1
static/js/potd.js Parādīt failu

@@ -88,7 +88,8 @@ function parse_list_file_name(data) {
}

var filenames = [];
while ((match = /\*\s*\[\[:File:(.*?)\]\]/g.exec(content)) !== null) {
var regexp = /\*\s*\[\[:File:(.*?)\]\]/g;
while ((match = regexp.exec(content)) !== null) {
filenames.push(match[1]);
}
var filename = filenames[Math.floor(Math.random() * filenames.length)];


Notiek ielāde…
Atcelt
Saglabāt