diff options
| author | Igor Minar | 2011-08-14 01:26:56 -0700 |
|---|---|---|
| committer | Igor Minar | 2011-08-15 00:20:48 -0700 |
| commit | 9d808239b3120b0120f164834ce3012f779c8939 (patch) | |
| tree | ceea216c6797316f39e230a2e006047299033c00 /src/widgets.js | |
| parent | ef01362e441db50758dde41bcdcc20823b55a213 (diff) | |
| download | angular.js-9d808239b3120b0120f164834ce3012f779c8939.tar.bz2 | |
style(*): wrap all assignments in if statements
we commonly assign stuff in if statments like this:
if (variable = someFn()) {
//do something with variable
}
This results in lint and IDE warnings (did you mean ==?).
It is better to be explicit about our intention and wrap the assignement
into parens:
if ((variable = someFn())) {
//do something with variable
}
Doing so suppresses warnings + is easier to understand the intention.
I verified that the closure compiler strips the extra parens, so there
is no byte overhead for this safety practice.
We should use this style going forward...
Diffstat (limited to 'src/widgets.js')
| -rw-r--r-- | src/widgets.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets.js b/src/widgets.js index d9af21c9..30f7256a 100644 --- a/src/widgets.js +++ b/src/widgets.js @@ -877,7 +877,7 @@ angularWidget('select', function(element){ lastElement = null; // start at the begining for(index = 0, length = optionGroup.length; index < length; index++) { option = optionGroup[index]; - if (existingOption = existingOptions[index+1]) { + if ((existingOption = existingOptions[index+1])) { // reuse elements lastElement = existingOption.element; if (existingOption.label !== option.label) { @@ -1116,7 +1116,7 @@ angularWidget('ng:switch', function (element) { this.$watch(watchExpr, function(scope, value) { element.html(''); - if (selectedTemplate = casesTemplate[value] || defaultCaseTemplate) { + if ((selectedTemplate = casesTemplate[value] || defaultCaseTemplate)) { changeCounter++; if (childScope) childScope.$destroy(); childScope = scope.$new(); |
