Lines 27-33
Link Here
|
27 |
"display": tbh.css("display"), |
27 |
"display": tbh.css("display"), |
28 |
"visibility": "hidden" |
28 |
"visibility": "hidden" |
29 |
}); |
29 |
}); |
30 |
tbhBis.width(tbh.outerWidth(true)); |
30 |
tbhBis.width(tbh.innerWidth(true)); |
31 |
tbhBis.height(tbh.innerHeight(true)); |
31 |
tbhBis.height(tbh.innerHeight(true)); |
32 |
tbhBis.attr('id', tbh.attr('id')+'Bis'); // Avoid 2 elts with the same id |
32 |
tbhBis.attr('id', tbh.attr('id')+'Bis'); // Avoid 2 elts with the same id |
33 |
tbh.after(tbhBis); |
33 |
tbh.after(tbhBis); |
34 |
- |
|
|