0

With Eclipse, AngularJs development, the following line shows an error/warning in the HTML editor.

<body ng-app>

And the following does not.

<body data-ng-app>

Is there anyway I could use the first variant and still not have the ugly warnings?

Tech for good
  • 177
  • 2
  • 13
  • Possible duplicate of [Undefined attribute name (ng-model) at Eclipse](http://stackoverflow.com/questions/27280822/undefined-attribute-name-ng-model-at-eclipse) – Abdull Jan 27 '17 at 13:50

1 Answers1

0

Do you have any Eclipse plugins in use that support AngularJS development? If not, you might want to check http://marketplace.eclipse.org/content/angularjs-eclipse

provides an HTML editor which supports AngularJS expression and directive

wegenmic
  • 320
  • 1
  • 3
  • 13