Changeset a4e71c5 in github
- Timestamp:
- Feb 1, 2012 2:40:30 AM (16 months ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
- Children:
- 3a86e267
- Parents:
- 6835114
- File:
-
- 1 edited
-
skins/larry/ui.js (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
skins/larry/ui.js
r5ff7ba4 ra4e71c5 713 713 function init_tabs(elem, current) 714 714 { 715 var id = elem.id,716 content = $(elem),715 var content = $(elem), 716 id = content.get(0).id, 717 717 fs = content.children('fieldset'); 718 718 … … 722 722 if (!id) { 723 723 id = 'rcmtabcontainer'; 724 elem.attr('id', id);724 content.attr('id', id); 725 725 } 726 726 … … 799 799 800 800 /** 801 * Roundcube splitter GUIclass801 * Roundcube UI splitter class 802 802 * 803 803 * @constructor … … 824 824 this.p2 = $(this.p.p2); 825 825 826 // check if referenced elements exist, otherwise abort 827 if (!this.p1.length || !this.p2.length) 828 return; 829 826 830 // create and position the handle for this splitter 827 831 this.p1pos = this.relative ? this.p1.position() : this.p1.offset(); … … 843 847 } 844 848 845 this.elm = this.handle.get(0);846 847 849 // listen to window resize on IE 848 850 if (bw.ie) 849 $(window).resize( function(e){ onResize(e) });851 $(window).resize(onResize); 850 852 851 853 // read saved position from cookie
Note: See TracChangeset
for help on using the changeset viewer.
