Bug Tracker

Changes between Initial Version and Version 1 of Ticket #9239, comment 8


Ignore:
Timestamp:
May 13, 2011, 9:57:38 AM (12 years ago)
Author:
Aderty
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9239, comment 8

    initial v1  
    11Same problem on version 1.6.1
    22
    3 The bug can be resolved on ligne 1288 from jquery-1.6.1.js
     3The bug can be resolved on ligne 1288 from jquery-1.6.1.js.
     4
    45Replace :
    56
    6 documentElement.insertBefore( body, documentElement.firstChild );
     7"documentElement.insertBefore( body, documentElement.firstChild );"
     8
    79by
    8 documentElement.appendChild( body );
     10
     11"documentElement.appendChild( body );"