(js) Fix email reminder with attendees

Fixes #4115
This commit is contained in:
Francis Lachapelle
2017-04-12 14:56:38 -04:00
parent 8bcda19799
commit 6fd9927092
3 changed files with 17 additions and 25 deletions

View File

@@ -689,16 +689,6 @@
return (this.occurrenceId && this.userHasRSVP);
};
/**
* @function isReadOnly
* @memberof Component.prototype
* @desc Check if the component is not editable and not an invitation
* @returns true or false
*/
Component.prototype.isReadOnly = function() {
return (this.isReadOnly && !this.userHasRSVP);
};
/**
* @function enablePercentComplete
* @memberof Component.prototype