mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-05-28 22:16:00 -04:00
Fixes minor refresh problem with single quotes.
This commit is contained in:
parent
7be15da13a
commit
840363badb
1 changed files with 2 additions and 2 deletions
|
@ -7,8 +7,8 @@ modulejs.define('core/refresh', ['_', 'core/server', 'model/entry'], function (_
|
||||||
|
|
||||||
_.each(json.entries, function (jsonEntry) {
|
_.each(json.entries, function (jsonEntry) {
|
||||||
|
|
||||||
found[jsonEntry.absHref] = true;
|
var e = Entry.get(jsonEntry.absHref, jsonEntry.time, jsonEntry.size, jsonEntry.status, jsonEntry.content);
|
||||||
Entry.get(jsonEntry.absHref, jsonEntry.time, jsonEntry.size, jsonEntry.status, jsonEntry.content);
|
found[e.absHref] = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
_.each(entry.content, function (e) {
|
_.each(entry.content, function (e) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue