mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-14 10:28:31 +02:00
add some JSDoc so Eclipse shows an outline: @memberOf and @augments (not yet understood by Eclipse), also fixed many warnings (mostly missing semicolons)
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* eGroupWare eTemplate2 - Split panel
|
||||
* EGroupware eTemplate2 - Split panel
|
||||
*
|
||||
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
||||
* @package etemplate
|
||||
@ -26,9 +26,10 @@
|
||||
* turn on double-click docking to minimize one of the children.
|
||||
*
|
||||
* @see http://methvin.com/splitter/ Uses Splitter
|
||||
* @augments et2_DOMWidget
|
||||
*/
|
||||
var et2_split = et2_DOMWidget.extend([et2_IResizeable], {
|
||||
|
||||
var et2_split = et2_DOMWidget.extend([et2_IResizeable],
|
||||
{
|
||||
attributes: {
|
||||
"orientation": {
|
||||
"name": "Orientation",
|
||||
@ -58,6 +59,11 @@ var et2_split = et2_DOMWidget.extend([et2_IResizeable], {
|
||||
"cols": {"ignore": true}
|
||||
},
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @memberOf et2_split
|
||||
*/
|
||||
init: function() {
|
||||
this._super.apply(this, arguments);
|
||||
|
||||
|
Reference in New Issue
Block a user