summaryrefslogtreecommitdiffstats
path: root/funcweb/funcweb/static
diff options
context:
space:
mode:
authormakkalot <makkalot@gmail.com>2008-07-24 15:36:13 +0300
committermakkalot <makkalot@gmail.com>2008-07-24 15:36:13 +0300
commit364d17a19282f1b8f22e561b396fdbc9983861ac (patch)
tree8ae542117293ed66dd474f4ddfba5abe32926c0b /funcweb/funcweb/static
parent6caed8a9a40087288b0251067a24ef8762325636 (diff)
downloadfunc-364d17a19282f1b8f22e561b396fdbc9983861ac.tar.gz
func-364d17a19282f1b8f22e561b396fdbc9983861ac.tar.xz
func-364d17a19282f1b8f22e561b396fdbc9983861ac.zip
add the link for notification text :)
Diffstat (limited to 'funcweb/funcweb/static')
-rw-r--r--funcweb/funcweb/static/javascript/async_tools.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/funcweb/funcweb/static/javascript/async_tools.js b/funcweb/funcweb/static/javascript/async_tools.js
index 44e4dc8..f96ebd2 100644
--- a/funcweb/funcweb/static/javascript/async_tools.js
+++ b/funcweb/funcweb/static/javascript/async_tools.js
@@ -9,7 +9,7 @@ function poll_async_changes(result){
if (result['changed']==true){
//alert('Check it ');
var the_change_msg = "We have some async changes : ";
- the_change_msg = the_change_msg + repr(result['changes'])+" check the RESULTS page!";
+ the_change_msg = the_change_msg + repr(result['changes'])+" check the <a href='/funcweb/display_async_results'>RESULTS</a> page!";
getElement('globalerror').innerHTML = the_change_msg;
window.setTimeout('check_async_change()',50000);
}