Changeset 3806

Show
Ignore:
Timestamp:
12/04/07 13:06:17 (1 year ago)
Author:
claudio.martinez
Message:

Fixed an error in ajax_form.js related IE6 and HTTPS websites.
IE6 considers iframes without a src="", a nonsecure item.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • projects/twAjaxTools/trunk/toscawidgets/widgets/ajax_tools/static/ajax_form.js

    r3805 r3806  
    1818        iframeHTML = '<iframe id="' + iframe_name + '" '; 
    1919        iframeHTML +='name="' + iframe_name + '" '; 
     20         
     21        // Update 04-12-2007, IE6 gives a warning (show nonsecure items - Y/N) 
     22        // when an IFRAME is added without a src="". 
     23        iframeHTML +='src="/toscawidgets/resources/toscawidgets.widgets.' + 
     24                           'ajax_tools.widgets/static/blank.html" '; 
     25         
    2026        iframeHTML +='style="display: none;">'; 
    2127        iframeHTML +='</iframe>';