# HG changeset patch
# User William Stein <wstein@gmail.com>
# Date 1210463440 25200
# Node ID 8410ad6b8435376100f1a12a2e516a8909256c96
# Parent 397c8fa28b534d261ef9343e5ed7343fa0d63a60
sage-1230 follow up based on referee remark (add back an error message).
diff -r 397c8fa28b53 -r 8410ad6b8435 sage/server/notebook/js.py
a
|
b
|
function worksheet_list_button_callback( |
1188 | 1188 | if (response_text != '') { |
1189 | 1189 | alert(response_text); |
1190 | 1190 | } |
1191 | | } |
| 1191 | } else { |
| 1192 | alert("Error applying function to worksheet(s)." + response_text); |
| 1193 | } |
1192 | 1194 | window.location.reload(true); |
1193 | 1195 | } |
1194 | 1196 | |