aboutsummaryrefslogtreecommitdiffstats
path: root/jsaccess/jsa/jsa.js
diff options
context:
space:
mode:
Diffstat (limited to 'jsaccess/jsa/jsa.js')
-rw-r--r--jsaccess/jsa/jsa.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jsaccess/jsa/jsa.js b/jsaccess/jsa/jsa.js
index 64cab5a..4046133 100644
--- a/jsaccess/jsa/jsa.js
+++ b/jsaccess/jsa/jsa.js
@@ -130,14 +130,14 @@ function _save(obj, name) {
}
function _status(txt, run_func) {
- var div = document.getElementById('status');
+ var div = document.getElementById('status_p');
div.innerHTML = div.innerHTML + '<br/>' + txt;
jQuery.fn.redraw = function() {
return this.hide(0, function() {
$(this).show();
});
};
- $('#status').redraw();
+ $('#status_p').redraw();
if (run_func)
setTimeout(run_func, 100); /* to force refresh */
}