fixed formatting with 8 space instead tab and EGroupware name

This commit is contained in:
Ralf Becker 2012-03-15 08:29:45 +00:00
parent 570b933331
commit 33e750d663

View File

@ -1,5 +1,5 @@
/**
* eGroupWare eTemplate2 - JS Select account widget
* EGroupware eTemplate2 - JS Select account widget
*
* Selecting accounts needs special UI, and displaying needs special consideration
* to avoid sending the entire user list to the client.
@ -9,14 +9,14 @@
* @subpackage api
* @link http://www.egroupware.org
* @author Nathan Gray
* @copyright Nathan Gray 2011
* @copyright Nathan Gray 2012
* @version $Id$
*/
"use strict";
/*egw:uses
et2_widget_link;
et2_widget_link;
*/
/**
@ -26,7 +26,7 @@
*/
var et2_selectAccount_ro = et2_link.extend([et2_IDetachedDOM], {
init: function(_parent, options) {
init: function(_parent, options) {
/**
Resolve some circular dependency problems here
selectAccount extends link, link is in a file that needs select,
@ -37,13 +37,12 @@ var et2_selectAccount_ro = et2_link.extend([et2_IDetachedDOM], {
_parent.supportedWidgetClasses.push(et2_selectAccount_ro);
}
this._super.apply(this, arguments);
this._super.apply(this, arguments);
this.options.application = 'home-accounts';
this.options.application = 'home-accounts';
// Don't make it look like a link though
this.link.removeClass("et2_link");
}
}
});
et2_register_widget(et2_selectAccount_ro, ["select-account_ro"]);