Changes between Initial Version and Version 1 of Ticket #5559, comment 6


Ignore:
Timestamp:
Mar 11, 2012, 3:02:12 AM (11 years ago)
Author:
chintsu
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5559, comment 6

    initial v1  
    22
    33{{{
    4     var temp;
    5     temp = plg['start'][0];
    6     plg['start'][0] = plg['start'][1];
    7     plg['start'][1] = temp;
     4var plg = $.ui['resizable'].prototype.plugins;
     5// 0 - AlsoResize, 1 - Containment
     6var temp;
     7temp = plg['start'][0];
     8plg['start'][0] = plg['start'][1];
     9plg['start'][1] = temp;
    810
    9     temp = plg['resize'][0];
    10     plg['resize'][0] = plg['resize'][1];
    11     plg['resize'][1] = temp;
    12 
    13     temp = plg['stop'][0];
    14     plg['stop'][0] = plg['stop'][2];
    15     plg['stop'][2] = temp;
     11temp = plg['resize'][0];
     12plg['resize'][0] = plg['resize'][1];
     13plg['resize'][1] = temp;
     14// 0 - AlsoResize, 2 - Containment
     15temp = plg['stop'][0];
     16plg['stop'][0] = plg['stop'][2];
     17plg['stop'][2] = temp;
    1618}}}