[Build] Move operators to satisfy JSHint

This commit is contained in:
Victor Woeltjen 2016-03-04 10:55:30 -08:00
parent a8f7bc01c3
commit 72ef134750
2 changed files with 4 additions and 4 deletions
platform/features/clock/src/actions

@ -47,8 +47,8 @@ define(
RestartTimerAction.appliesTo = function (context) {
var model =
(context.domainObject && context.domainObject.getModel())
|| {};
(context.domainObject && context.domainObject.getModel()) ||
{};
// We show this variant for timers which already have
// a target time.

@ -47,8 +47,8 @@ define(
StartTimerAction.appliesTo = function (context) {
var model =
(context.domainObject && context.domainObject.getModel())
|| {};
(context.domainObject && context.domainObject.getModel()) ||
{};
// We show this variant for timers which do not yet have
// a target time.