mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 08:23:12 +01:00
Fix typo
This commit is contained in:
parent
0571ac47e2
commit
5947d0a481
@ -105,7 +105,7 @@ var et2_baseWidget = et2_DOMWidget.extend(et2_IAligned, {
|
|||||||
|
|
||||||
// Remove the message div from the surroundings before creating a new
|
// Remove the message div from the surroundings before creating a new
|
||||||
// one
|
// one
|
||||||
this.hideMessgae(false, true);
|
this.hideMessage(false, true);
|
||||||
|
|
||||||
// Create the message div and add it to the "surroundings" manager
|
// Create the message div and add it to the "surroundings" manager
|
||||||
this._messageDiv = $j(document.createElement("div"))
|
this._messageDiv = $j(document.createElement("div"))
|
||||||
@ -128,14 +128,14 @@ var et2_baseWidget = et2_DOMWidget.extend(et2_IAligned, {
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The hideMessgae function can be used to hide a previously shown message.
|
* The hideMessage function can be used to hide a previously shown message.
|
||||||
*
|
*
|
||||||
* @param _fade if true, the message div will fade out, otherwise the message
|
* @param _fade if true, the message div will fade out, otherwise the message
|
||||||
* div is removed immediately. Defaults to true.
|
* div is removed immediately. Defaults to true.
|
||||||
* @param _noUpdate is used internally to prevent an update of the surroundings
|
* @param _noUpdate is used internally to prevent an update of the surroundings
|
||||||
* manager.
|
* manager.
|
||||||
*/
|
*/
|
||||||
hideMessgae: function(_fade, _noUpdate) {
|
hideMessage: function(_fade, _noUpdate) {
|
||||||
if (typeof _fade == "undefined")
|
if (typeof _fade == "undefined")
|
||||||
{
|
{
|
||||||
_fade = true;
|
_fade = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user