Changeset 844 for trunk/web-app/js
- Timestamp:
- Mar 4, 2011, 2:41:03 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/web-app/js/taskShow.js
r833 r844 14 14 createContainer.find('.pane_close img').click(function(){ 15 15 createContainer.slideUp(600); 16 button.show(600); 16 button.show(600, function() { 17 if(jQuery.browser.msie) { 18 jQuery(this).get(0).style.removeAttribute('filter'); // Remove blur/fuzzy text in IE. 19 } 20 }); 17 21 }); 18 22 } … … 33 37 createContainer.hide(); 34 38 listContainer.html(data); 35 button.show(600); 39 button.show(600, function() { 40 if(jQuery.browser.msie) { 41 jQuery(this).get(0).style.removeAttribute('filter'); // Remove blur/fuzzy text in IE. 42 } 43 }); 36 44 } 37 45 … … 43 51 else { 44 52 createContainer.html(errorIndication().show()).slideDown(600); 53 button.show(600, function() { 54 if(jQuery.browser.msie) { 55 jQuery(this).get(0).style.removeAttribute('filter'); // Remove blur/fuzzy text in IE. 56 } 57 }); 45 58 } 46 button.show(600);47 59 } 48 60 … … 80 92 createContainer.html(errorIndication().show()).slideDown(600); 81 93 } 82 button.show(600); 94 button.show(600, function() { 95 if(jQuery.browser.msie) { 96 jQuery(this).get(0).style.removeAttribute('filter'); // Remove blur/fuzzy text in IE. 97 } 98 }); 83 99 } 84 100
Note: See TracChangeset
for help on using the changeset viewer.