Changeset c71e95b in github
- Timestamp:
- Apr 12, 2012 4:39:40 AM (14 months ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
- Children:
- 28391b4
- Parents:
- 2c4d0bc
- Location:
- program
- Files:
-
- 2 edited
-
js/app.js (modified) (1 diff)
-
steps/addressbook/func.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
program/js/app.js
r1ba07f0 rc71e95b 4564 4564 appendcontainer = $('#contactsection'+section+' .contactcontroller'+col); 4565 4565 4566 if (!appendcontainer.length) 4567 appendcontainer = $('<fieldset>').addClass('contactfieldgroup contactcontroller'+col).insertAfter($('#contactsection'+section+' .contactfieldgroup').last()); 4566 if (!appendcontainer.length) { 4567 var sect = $('#contactsection'+section), 4568 lastgroup = $('.contactfieldgroup', sect).last(); 4569 appendcontainer = $('<fieldset>').addClass('contactfieldgroup contactcontroller'+col); 4570 if (lastgroup.length) 4571 appendcontainer.insertAfter(lastgroup); 4572 else 4573 sect.prepend(appendcontainer); 4574 } 4568 4575 4569 4576 if (appendcontainer.length && appendcontainer.get(0).nodeName == 'FIELDSET') { -
program/steps/addressbook/func.inc
r4cf42fd rc71e95b 670 670 } 671 671 672 if (!$content )672 if (!$content && !$edit_mode) 673 673 continue; 674 674
Note: See TracChangeset
for help on using the changeset viewer.
