Changeset 578
- Timestamp:
- 02/16/09 22:02:50 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wymeditor/jquery.wymeditor.js
r572 r578 1279 1279 WYMeditor.editor.prototype.computeBasePath = function() { 1280 1280 return jQuery(jQuery.grep(jQuery('script'), function(s){ 1281 return (s.src && s.src.match(/jquery\.wymeditor(\.pack ){0,1}\.js(\?.*)?$/ ))1282 })).attr('src').replace(/jquery\.wymeditor(\.pack ){0,1}\.js(\?.*)?$/, '');1281 return (s.src && s.src.match(/jquery\.wymeditor(\.pack|\.min)?\.js(\?.*)?$/ )) 1282 })).attr('src').replace(/jquery\.wymeditor(\.pack|\.min)?\.js(\?.*)?$/, ''); 1283 1283 }; 1284 1284 1285 1285 WYMeditor.editor.prototype.computeWymPath = function() { 1286 1286 return jQuery(jQuery.grep(jQuery('script'), function(s){ 1287 return (s.src && s.src.match(/jquery\.wymeditor(\.pack ){0,1}\.js(\?.*)?$/ ))1287 return (s.src && s.src.match(/jquery\.wymeditor(\.pack|\.min)?\.js(\?.*)?$/ )) 1288 1288 })).attr('src'); 1289 1289 }; … … 1291 1291 WYMeditor.editor.prototype.computeJqueryPath = function() { 1292 1292 return jQuery(jQuery.grep(jQuery('script'), function(s){ 1293 return (s.src && s.src.match(/jquery(-(.*)){0,1}(\.pack ){0,1}\.js(\?.*)?$/ ))1293 return (s.src && s.src.match(/jquery(-(.*)){0,1}(\.pack|\.min)?\.js(\?.*)?$/ )) 1294 1294 })).attr('src'); 1295 1295 };
Note: See TracChangeset
for help on using the changeset viewer.