aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/directive
diff options
context:
space:
mode:
authorIgor Minar2014-02-28 16:43:23 -0800
committerIgor Minar2014-02-28 16:47:21 -0800
commitd3fbc25be21719e76907cacfcb0291788c79adc2 (patch)
tree496a8aac6a44bf61d2d44fd65fdc22b82c80ff76 /src/ng/directive
parent0d034a98ec4ef1e0c3c1727e23d1ccd971ae74e6 (diff)
downloadangular.js-d3fbc25be21719e76907cacfcb0291788c79adc2.tar.bz2
style: enable jscs requireRightStickedOperators rule
Diffstat (limited to 'src/ng/directive')
-rw-r--r--src/ng/directive/select.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ng/directive/select.js b/src/ng/directive/select.js
index 3846d18a..0b562cca 100644
--- a/src/ng/directive/select.js
+++ b/src/ng/directive/select.js
@@ -304,7 +304,7 @@ var selectDirective = ['$compile', '$parse', function($compile, $parse) {
function setupAsOptions(scope, selectElement, ctrl) {
var match;
- if (! (match = optionsExp.match(NG_OPTIONS_REGEXP))) {
+ if (!(match = optionsExp.match(NG_OPTIONS_REGEXP))) {
throw ngOptionsMinErr('iexp',
"Expected expression in form of " +
"'_select_ (as _label_)? for (_key_,)?_value_ in _collection_'" +