Hi,
I have one test app, which runs on Chrome, Safari and Fireworks on Mac.
But same app is not working on Opera (Version 12.12) on Mac.
Is it the know issue in AngularJS?
Here is the code(also attached app herewith):
http://plnkr.co/edit/MRB0QC4KRvLuVqi3hxfl
Thanks & Regards,
Nand
--
You received this message because you are subscribed to the Google Groups "AngularJS" group.
To post to this group, send email to ang...@googlegroups.com.
To unsubscribe from this group, send email to angular+u...@googlegroups.com.
Visit this group at http://groups.google.com/group/angular?hl=en-US.
------------------------------------------------------
<tr>
<td>
<img ng-src=http://dirgahayuelektronik.com/image/cache/data/Ipad/ip1-40x40.jpg>
{{testdata[0].Number}}
</td>
<td colspan = "2" ng-repeat=" testdata in testdatas ">
<p>{{testdata.Number}}</p>
</td>
</tr>
------------------------------------------------------
------------------------------------------------------
<tr>
<td>
<img ng-src=http://dirgahayuelektronik.com/image/cache/data/Ipad/ip1-40x40.jpg>
{{testdata[0].Number}}
</td>
<td colspan = "2" ng-repeat=" testdata in testdatas ">
<p>{{testdata.Number}}</p>
</td>
</tr>
------------------------------------------------------
--
Hello!
One of the ways that angular uses directives is through comments. This is how it knows the repeat still exists after the first run. The comment output is expected.
Side note: when you create your own directives, you can use the comment notation too, through the 'restrict' option.
Josh