mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 14:50:17 -04:00
rename internal var name to avoid collision
This commit is contained in:
parent
29b0e9bfbc
commit
39aa5868ac
2 changed files with 7 additions and 7 deletions
|
|
@ -13,8 +13,8 @@
|
|||
*/
|
||||
function ExperiencedAdmin(wizard, initialState) {
|
||||
this.wizard = wizard;
|
||||
this.isExperienced = initialState;
|
||||
if(this.isExperienced) {
|
||||
this._isExperienced = initialState;
|
||||
if(this._isExperienced) {
|
||||
this.hideEntryCounters();
|
||||
}
|
||||
}
|
||||
|
|
@ -26,8 +26,8 @@ function ExperiencedAdmin(wizard, initialState) {
|
|||
* @param {boolean} whether the admin is experienced or not
|
||||
*/
|
||||
ExperiencedAdmin.prototype.setExperienced = function(isExperienced) {
|
||||
this.isExperienced = isExperienced;
|
||||
if(this.isExperienced) {
|
||||
this._isExperienced = isExperienced;
|
||||
if(this._isExperienced) {
|
||||
this.enableRawMode();
|
||||
this.hideEntryCounters();
|
||||
} else {
|
||||
|
|
@ -41,7 +41,7 @@ ExperiencedAdmin.prototype.setExperienced = function(isExperienced) {
|
|||
* @return {boolean} whether the admin is experienced or not
|
||||
*/
|
||||
ExperiencedAdmin.prototype.isExperienced = function() {
|
||||
return this.isExperienced;
|
||||
return this._isExperienced;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
@ -72,7 +72,7 @@ ExperiencedAdmin.prototype.updateGroupTab = function(mode) {
|
|||
ExperiencedAdmin.prototype._updateTab = function(mode, $countEl) {
|
||||
if(mode === LdapWizard.filterModeAssisted) {
|
||||
$countEl.removeClass('hidden');
|
||||
} else if(!this.isExperienced) {
|
||||
} else if(!this._isExperienced) {
|
||||
$countEl.removeClass('hidden');
|
||||
} else {
|
||||
$countEl.addClass('hidden');
|
||||
|
|
|
|||
|
|
@ -777,7 +777,7 @@ var LdapWizard = {
|
|||
},
|
||||
|
||||
onToggleRawFilterConfirmation: function(currentMode, callback) {
|
||||
if(!LdapWizard.admin.isExperienced
|
||||
if(!LdapWizard.admin.isExperienced()
|
||||
|| currentMode === LdapWizard.filterModeAssisted
|
||||
) {
|
||||
return callback(true);
|
||||
|
|
|
|||
Loading…
Reference in a new issue