Changeset 14408

Show
Ignore:
Timestamp:
01/14/08 16:19:16 (11 months ago)
Author:
flack
Message:

make it possible to close the creation dialog by clicking on the plus icon again

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/midcom/midcom.helper.datamanager2/static/chooser/jquery.chooser_widget.js

    r14407 r14408  
    308308        create_button = jQuery('#' + options.widget_id + '_create_button'); 
    309309        create_button.bind('click', function(){ 
     310                if (jQuery('#' + options.widget_id + '_creation_dialog').css('display') == 'block') 
     311                { 
     312                   jQuery('#' + options.widget_id + '_creation_dialog').hide(); 
     313                   return; 
     314                } 
    310315            var creation_url = options.creation_handler; 
    311316