Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Having custom Object.prototype method prevents form validation #12066

Closed
funkflute opened this issue Jun 9, 2015 · 2 comments
Closed

Having custom Object.prototype method prevents form validation #12066

funkflute opened this issue Jun 9, 2015 · 2 comments

Comments

@funkflute
Copy link

I'm running into this issue that if I set a custom Object.prototype method, it stops form validation from updating:

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>Test</title> 
    </head>
    <body ng-app>
        <form name="testForm" novalidate>
            <!-- type in here and field and form should turn valid -->
            <input type="text" name="test" ng-model="test" required> Field Valid? {{testForm.test.$valid | json}}
        </form>
        Form valid? {{testForm.$valid | json}}

        <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js"></script>
        <script>
            // remove this line and validation works again
            Object.prototype.someThing = function() {}
        </script>
    </body>
</html>
@ryanhart2
Copy link
Contributor

Here is a plunk http://plnkr.co/edit/XauBqEKawyDyk21RFc1r?p=preview demonstrating the behaviour (the prototype method is set in script.js). The issue seems to have started in version 1.3.0-rc.1 so that is what I have used in the plunk.

lgalfaso added a commit to lgalfaso/angular.js that referenced this issue Jun 10, 2015
…rable value

When adding an Object.prototype enumerable property, this should not be confused
as a form error

Closes angular#12066
@lgalfaso
Copy link
Contributor

The check that there are no errors in the errors object was not checking that any of the properties comes from the Object.prototype. #12075 should take care of this

@Narretz Narretz modified the milestones: 1.4.1, 1.4.x Jun 10, 2015
netman92 pushed a commit to netman92/angular.js that referenced this issue Aug 8, 2015
…rable value

When adding an Object.prototype enumerable property, this should not be confused
as a form error

Closes angular#12066
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

4 participants