plugins/gallery/canvas.js
changeset 19 08bf8aa2f0ab
parent 18 c1c398349651
child 35 1dd30d7bf29f
equal deleted inserted replaced
18:c1c398349651 19:08bf8aa2f0ab
    81   
    81   
    82   var div_inner = document.createElement('div');
    82   var div_inner = document.createElement('div');
    83   div_inner.style.border = '1px solid #FFFFFF';
    83   div_inner.style.border = '1px solid #FFFFFF';
    84   if ( IE )
    84   if ( IE )
    85   {
    85   {
    86     div_inner.style.width = '1px';
    86     div_inner.style.width = '100%';
    87     div_inner.style.height = '1px';
    87     div_inner.style.height = '100%';
    88   }
    88   }
    89   else
    89   else
    90   {
    90   {
    91     div_inner.style.width = String(inner_width) + 'px';
    91     div_inner.style.width = String(inner_width) + 'px';
    92     div_inner.style.height = String(inner_height) + 'px';
    92     div_inner.style.height = String(inner_height) + 'px';