rename internal var name to avoid collision

This commit is contained in:
Arthur Schiwon 2014-10-08 14:55:47 +02:00
parent 29b0e9bfbc
commit 39aa5868ac
2 changed files with 7 additions and 7 deletions

View file

@ -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');

View file

@ -777,7 +777,7 @@ var LdapWizard = {
},
onToggleRawFilterConfirmation: function(currentMode, callback) {
if(!LdapWizard.admin.isExperienced
if(!LdapWizard.admin.isExperienced()
|| currentMode === LdapWizard.filterModeAssisted
) {
return callback(true);