Cleanup style
authorTim Otten <totten@civicrm.org>
Thu, 12 Feb 2015 14:32:17 +0000 (06:32 -0800)
committerTim Otten <totten@civicrm.org>
Thu, 12 Feb 2015 19:59:17 +0000 (11:59 -0800)
js/angular-crm-ui.js
js/angular-crmMailing.js
js/angular-crmMailing/services.js

index ee386d21a7e4f5fbe9f80d30911c2ba7ab5ac16b..cfc451866a339a6d5114e1c8e7d8e4510ff8dcb8 100644 (file)
             ck.on('blur', function(){
               $timeout(function(){
                 scope.$eval(attr.ngBlur);
-              })
+              });
             });
           }
 
index ea8733a8ed1bdfbd58ef46705f1a6b358dd65b47..f75cdf450eb6458eeead51f4c84fb85bf663608f 100644 (file)
         crmMailingMgr.findMissingTokens(mailing, 'body_html'),
         crmMailingMgr.findMissingTokens(mailing, 'body_text')
       );
-      if (!_.isEmpty(missing) > 0) {
-        var buf = '<p>'
-          + ts('Before submitting this mailing, you must include an address token and an action token as part of the mailing body, mailing header, or mailing footer.')
-          '</p><ul>';
+      if (! _.isEmpty(missing)) {
+        var buf = '<p>' +
+          ts('Before submitting this mailing, you must include an address token and an action token as part of the mailing body, mailing header, or mailing footer.') +
+          '</p><ul>';
         angular.forEach(missing, function(msg, token) {
           // FIXME LTR RTL
-          buf = buf + '<li>{' + token + '} - <em>' + msg + '</em></li>'
+          buf = buf + '<li>{' + token + '} - <em>' + msg + '</em></li>';
         });
         buf += '</ul>';
         lastEmailTokenAlert = CRM.alert(buf, undefined, 'error');
       }
-    }
+    };
   });
 })(angular, CRM.$, CRM._);
index 3c43dcdaf8c4c6a1649c036319444beda7e6a4cc..61f3c2219dad4a72736b66fdd005e003b433f1e9 100644 (file)
                   count++;
                 }
               });
-              if (count == 0) {
+              if (count === 0) {
                 angular.extend(missing, value);
               }
             }