Changeset 1820
- Timestamp:
- 05/22/10 22:38:19 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
src/prj/jobad/trunk/core/script/remake/services/latin.js
r1818 r1820 385 385 // highlight bracketed expression 386 386 if (getTagName(target) == 'mfenced') { 387 highlight(target); 388 setTimeout(function(){lowlight(target)}, 2000); 387 $(target).effect("highlight", {}, 3000); 388 //highlight(target); 389 //setTimeout(function(){lowlight(target)}, 2000); 389 390 } 390 391 // highlight variable declaration … … 395 396 ); 396 397 var v = res.singleNodeValue; 397 highlight(v); 398 setTimeout(function(){lowlight(v)}, 2000); 398 $(v).effect("highlight", {}, 3000); 399 //highlight(v); 400 //setTimeout(function(){lowlight(v)}, 2000); 399 401 } 400 402 return true;
