Commit efc144ab authored by Tim Graham's avatar Tim Graham
Browse files

Fixed JavaScript "space-infix-ops" violations.

parent ec6563f5
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -36,10 +36,7 @@
        ],
        "space-before-blocks": [2, "always"],
        "space-before-function-paren": [2, {"anonymous": "never", "named": "never"}],
        "space-infix-ops": [
            1,
            {"int32Hint": false}
        ],
        "space-infix-ops": [2, {"int32Hint": false}],
        "strict": [1, "function"]
    },
    "env": {
+10 −11
Original line number Diff line number Diff line
@@ -112,8 +112,7 @@
                    var updateElementCallback = function() {
                        updateElementIndex(this, options.prefix, i);
                    };
                    for (i=0, formCount=forms.length; i<formCount; i++)
                    {
                    for (i = 0, formCount = forms.length; i < formCount; i++) {
                        updateElementIndex($(forms).get(i), options.prefix, i);
                        $(forms.get(i)).find("*").each(updateElementCallback);
                    }
+1 −1

File changed.

Contains only whitespace changes.

+8 −8

File changed.

Contains only whitespace changes.

+13 −13

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+4 −4

File changed.

Contains only whitespace changes.

+12 −12

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

Loading