Changes between Initial Version and Version 1 of Ticket #5559, comment 6
- Timestamp:
- Mar 11, 2012, 3:02:12 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5559, comment 6
initial v1 2 2 3 3 {{{ 4 var temp; 5 temp = plg['start'][0]; 6 plg['start'][0] = plg['start'][1]; 7 plg['start'][1] = temp; 4 var plg = $.ui['resizable'].prototype.plugins; 5 // 0 - AlsoResize, 1 - Containment 6 var temp; 7 temp = plg['start'][0]; 8 plg['start'][0] = plg['start'][1]; 9 plg['start'][1] = temp; 8 10 9 10 11 12 13 14 15 11 temp = plg['resize'][0]; 12 plg['resize'][0] = plg['resize'][1]; 13 plg['resize'][1] = temp; 14 // 0 - AlsoResize, 2 - Containment 15 temp = plg['stop'][0]; 16 plg['stop'][0] = plg['stop'][2]; 17 plg['stop'][2] = temp; 16 18 }}}