be a little less cryptic
This commit is contained in:
parent
bf6639da25
commit
047f68e70e
@ -840,7 +840,7 @@ updateTime = ->
|
|||||||
updateNow()
|
updateNow()
|
||||||
else if time > 10
|
else if time > 10
|
||||||
time = 0
|
time = 0
|
||||||
g.r.abort()
|
g.req.abort()
|
||||||
updateNow()
|
updateNow()
|
||||||
span.textContent = time
|
span.textContent = time
|
||||||
|
|
||||||
@ -864,7 +864,7 @@ updateInterval = ->
|
|||||||
span.textContent = -1 * n
|
span.textContent = -1 * n
|
||||||
|
|
||||||
updateNow = ->
|
updateNow = ->
|
||||||
g.r = request location.href, updateCallback
|
g.req = request location.href, updateCallback
|
||||||
|
|
||||||
updaterMake = ->
|
updaterMake = ->
|
||||||
div = AEOS.makeDialog 'updater', 'topright'
|
div = AEOS.makeDialog 'updater', 'topright'
|
||||||
|
|||||||
@ -1102,7 +1102,7 @@
|
|||||||
updateNow();
|
updateNow();
|
||||||
} else if (time > 10) {
|
} else if (time > 10) {
|
||||||
time = 0;
|
time = 0;
|
||||||
g.r.abort();
|
g.req.abort();
|
||||||
updateNow();
|
updateNow();
|
||||||
}
|
}
|
||||||
return span.textContent = time;
|
return span.textContent = time;
|
||||||
@ -1131,7 +1131,7 @@
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
updateNow = function() {
|
updateNow = function() {
|
||||||
return g.r = request(location.href, updateCallback);
|
return g.req = request(location.href, updateCallback);
|
||||||
};
|
};
|
||||||
updaterMake = function() {
|
updaterMake = function() {
|
||||||
var auto, div, html, interval;
|
var auto, div, html, interval;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user