Changeset 825 for trunk/web-app/js
- Timestamp:
- Feb 24, 2011, 5:09:48 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/web-app/js/application.js
r824 r825 15 15 // jQuery AJAX utils. 16 16 17 function getLoadingHtml() { 18 var imgSrc = getContextPath()+"/images/loading.gif"; 19 return '<div class="jQueryAjaxLoading"><img src="'+imgSrc+'" />.</div>'; 17 function loadingIndication() { 18 return jQuery('#jQueryAjaxLoading').clone(); 20 19 } 21 20 22 function getErrorHtml() { 23 var html = '<div class="message_error">Could not perform operation.</div>'; 24 return html; 21 function errorIndication() { 22 return jQuery('#jQueryAjaxDefaultError').clone(); 25 23 }
Note: See TracChangeset
for help on using the changeset viewer.