mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-19 04:46:42 +02:00
use super.<name>(<arguments>) instead of super.<name>.apply(this, arguments)
This commit is contained in:
@@ -73,7 +73,7 @@ class AdminApp extends EgwApp
|
||||
/**
|
||||
* Destructor
|
||||
*/
|
||||
destroy()
|
||||
destroy(_app)
|
||||
{
|
||||
this.iframe = null;
|
||||
this.nm = null;
|
||||
@@ -81,7 +81,7 @@ class AdminApp extends EgwApp
|
||||
this.tree = null;
|
||||
|
||||
// call parent
|
||||
super.destroy.apply(this, arguments);
|
||||
super.destroy(_app);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -95,7 +95,7 @@ class AdminApp extends EgwApp
|
||||
et2_ready(_et2, _name)
|
||||
{
|
||||
// call parent
|
||||
super.et2_ready.apply(this, arguments);
|
||||
super.et2_ready(_et2, _name);
|
||||
|
||||
switch(_name)
|
||||
{
|
||||
|
Reference in New Issue
Block a user