Changeset 6692
- Timestamp:
- 07/02/12 12:25:11 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.4/prototype/modules/calendar/js/helpers.js
r6685 r6692 406 406 * Remove tooltip possivelmente existente 407 407 */ 408 if ($('dd.attendee-list li:last').data('qtip')) 409 $('dd.attendee-list li:last').qtip('destroy'); 410 411 attendees = {}; 408 if ($('.qtip.qtip-blue.qtip-active').length) 409 $('.qtip.qtip-blue.qtip-active').qtip('destroy'); 410 attendees = {}; 412 411 413 412 }, … … 464 463 //DataLayer.rollback(); 465 464 return canDiscardEventDialog; 465 }, 466 dragStart: function(event, ui) { 467 if ($('.qtip.qtip-blue.qtip-active').length) 468 $('.qtip.qtip-blue.qtip-active').qtip('destroy'); 466 469 } 467 470 }); … … 471 474 } 472 475 473 var tabs = UI.dialogs.addEvent.children('.content').tabs(); 476 var tabs = UI.dialogs.addEvent.children('.content').tabs({ 477 select: function(event, ui) { 478 if ($('.qtip.qtip-blue.qtip-active').length) 479 $('.qtip.qtip-blue.qtip-active').qtip('destroy'); 480 } 481 }); 474 482 var calendar = DataLayer.get('calendar', objEvent.calendar); 475 483
Note: See TracChangeset
for help on using the changeset viewer.