Changeset 3820:31cd92d76668
Legend:
- Unmodified
- Added
- Removed
-
admin/js/_index.js
r3819 r3820 156 156 $('#content h2').after(xml); 157 157 // manage outgoing links 158 dotclear.outgoingLink ('#ajax-update a');158 dotclear.outgoingLinks('#ajax-update a'); 159 159 } 160 160 } … … 183 183 $('#dashboard-boxes div.db-items').prepend(xml); 184 184 // manage outgoing links 185 dotclear.outgoingLink ('#ajax-news a');185 dotclear.outgoingLinks('#ajax-news a'); 186 186 } 187 187 } -
admin/js/common.js
r3819 r3820 434 434 }); 435 435 }, 436 outgoingLink : function(target) {436 outgoingLinks: function(target) { 437 437 $(target).filter(function() { 438 438 return ((this.hostname && this.hostname != location.hostname && !$(this).hasClass('modal') && !$(this).hasClass('modal-image')) || $(this).hasClass('outgoing')); … … 461 461 }); 462 462 // manage outgoing links 463 dotclear.outgoingLink ('a');463 dotclear.outgoingLinks('a'); 464 464 // Popups: dealing with Escape key fired 465 465 $('#dotclear-admin.popup').keyup(function(e) {
Note: See TracChangeset
for help on using the changeset viewer.