From 33e750d6639462a08586ee1c2a182cc9785690f0 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 15 Mar 2012 08:29:45 +0000 Subject: [PATCH] fixed formatting with 8 space instead tab and EGroupware name --- etemplate/js/et2_widget_selectAccount.js | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/etemplate/js/et2_widget_selectAccount.js b/etemplate/js/et2_widget_selectAccount.js index b1066892b7..d48bf85fde 100644 --- a/etemplate/js/et2_widget_selectAccount.js +++ b/etemplate/js/et2_widget_selectAccount.js @@ -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"]); -