[Code Style] Satisfy JSLint

Add missing semicolons etc. to satisfy JSLint after
changes for WTD-1482.
This commit is contained in:
Victor Woeltjen
2015-08-11 13:03:06 -07:00
parent c19b3384ca
commit c450c22ddd
8 changed files with 30 additions and 30 deletions

View File

@ -51,14 +51,14 @@ define(
return this.$q.when(
this.navigationService.setNavigation(this.domainObject)
);
}
};
/**
* Navigate as an action is only applicable when a domain object
* is described in the action context.
* @param {ActionContext} context the context in which the action
* will be performed
* @returns true if applicable
* @returns {boolean} true if applicable
*/
NavigateAction.appliesTo = function (context) {
return context.domainObject !== undefined;