[Build] Relocate operators

...in multi-line expressions, to satisfy JSHint.
This commit is contained in:
Victor Woeltjen
2016-03-04 11:02:57 -08:00
parent 56a91dfbaf
commit c00d77dcb1
8 changed files with 21 additions and 21 deletions

View File

@ -388,8 +388,8 @@ define(
notifications queued for display, setup a timeout to
dismiss the dialog.
*/
if (notification && (notification.model.autoDismiss
|| this.selectNextNotification())) {
if (notification && (notification.model.autoDismiss ||
this.selectNextNotification())) {
timeout = notification.model.autoDismiss || this.DEFAULT_AUTO_DISMISS;
this.active.timeout = this.$timeout(function () {
@ -416,8 +416,8 @@ define(
for (; i< this.notifications.length; i++) {
notification = this.notifications[i];
if (!notification.model.minimized
&& notification!== this.active.notification) {
if (!notification.model.minimized &&
notification!== this.active.notification) {
return notification;
}