<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/test, branch v0.10.2</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix(parser): Fix short circuit of logical AND and OR operators</title>
<updated>2011-10-07T23:01:09+00:00</updated>
<author>
<name>Dhruv Manek</name>
</author>
<published>2011-09-30T23:55:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e1ecc34edd19b95d51fbcb1351b04b9876c974c1'/>
<id>e1ecc34edd19b95d51fbcb1351b04b9876c974c1</id>
<content type='text'>
Closes #433
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #433
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($limitTo): properly handle excessive limits</title>
<updated>2011-10-05T18:01:32+00:00</updated>
<author>
<name>TEHEK Firefox</name>
</author>
<published>2011-09-23T18:36:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c115fa99240a55e32e1fa39f037056df429be741'/>
<id>c115fa99240a55e32e1fa39f037056df429be741</id>
<content type='text'>
`angular.Array.limitTo`'s  result should not exceed original input array size

Closes #571
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`angular.Array.limitTo`'s  result should not exceed original input array size

Closes #571
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(jqLite): css should convert dash-separated properties to camelCase</title>
<updated>2011-09-28T21:57:00+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-09-27T14:56:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ca1e45beafd060b698933886f6425faf365bd31d'/>
<id>ca1e45beafd060b698933886f6425faf365bd31d</id>
<content type='text'>
this fix is needed for Firefox or other browsers that strictly follow
dom/css spec which states that element.style should make properties
available in camelCased form.

Closes #569
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this fix is needed for Firefox or other browsers that strictly follow
dom/css spec which states that element.style should make properties
available in camelCased form.

Closes #569
</pre>
</div>
</content>
</entry>
<entry>
<title>test(matchers): add toBeOneOf matcher</title>
<updated>2011-09-27T19:48:47+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-09-27T18:59:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=084b83ffa909a2221008acd64fe59b326d30bc87'/>
<id>084b83ffa909a2221008acd64fe59b326d30bc87</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($resource): action defaults should override resource defaults</title>
<updated>2011-09-26T22:44:10+00:00</updated>
<author>
<name>Marcello Nuccio</name>
</author>
<published>2011-09-02T13:50:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=bf5e5f7bc9ebc7dc6cf8fdf3c4923498b22a8654'/>
<id>bf5e5f7bc9ebc7dc6cf8fdf3c4923498b22a8654</id>
<content type='text'>
defaults definned per action should take precedence over defaults
defined for the whole resource.

This is potentialy a BREAKING CHANGE in case someone relied on the buggy
behavior.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
defaults definned per action should take precedence over defaults
defined for the whole resource.

This is potentialy a BREAKING CHANGE in case someone relied on the buggy
behavior.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($route): fix regex escaping in route matcher</title>
<updated>2011-09-21T11:47:17+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-09-21T11:47:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2bc39bb0b4f81b77597bb52f8572d231cf4f83e2'/>
<id>2bc39bb0b4f81b77597bb52f8572d231cf4f83e2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(scenarioRunner): adding support for element().prop()</title>
<updated>2011-09-16T00:44:34+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-09-15T22:05:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6883e8c7a0c121319ced63596718d34e3ab650a8'/>
<id>6883e8c7a0c121319ced63596718d34e3ab650a8</id>
<content type='text'>
since jQuery 1.6.4 attr() focuses only on work with element attributes and doesn't deal well with element properties, so adding prop() support is required for getting many e2e tests to pass after upgrading the runner to jQuery 1.6.4.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
since jQuery 1.6.4 attr() focuses only on work with element attributes and doesn't deal well with element properties, so adding prop() support is required for getting many e2e tests to pass after upgrading the runner to jQuery 1.6.4.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(specs): various fixes to get IE8+jquery unit tests green</title>
<updated>2011-09-16T00:44:33+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-09-15T03:36:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7ae536d0532b7ad7859f9cf7e47b406f63383f29'/>
<id>7ae536d0532b7ad7859f9cf7e47b406f63383f29</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(specs): fix jQuery to jqLite binding on IE8</title>
<updated>2011-09-16T00:44:33+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-09-15T02:54:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2170c06924b3a0dc1fef3b383d6a236e670dceea'/>
<id>2170c06924b3a0dc1fef3b383d6a236e670dceea</id>
<content type='text'>
It appears that this whole time all IE8 unit tests ran only with jqLite. Due to a weird bug in IE[1], we never overwrote jqLite implementation with jQuery, so the tests ran with our jqLite instead.

This affected only IE8 (and likely older) and only in unit testing mode. angular.js - the built artifact binds to jQuery just find.

[1] https://plus.google.com/104744871076396904202/posts/Kqjuj6RSbbT
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It appears that this whole time all IE8 unit tests ran only with jqLite. Due to a weird bug in IE[1], we never overwrote jqLite implementation with jQuery, so the tests ran with our jqLite instead.

This affected only IE8 (and likely older) and only in unit testing mode. angular.js - the built artifact binds to jQuery just find.

[1] https://plus.google.com/104744871076396904202/posts/Kqjuj6RSbbT
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(specs): jQuery now returns attr name instead of true/false for special attrs</title>
<updated>2011-09-16T00:44:32+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-09-14T22:47:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0e5a24c584d88b17297010676b8e0005b3545efd'/>
<id>0e5a24c584d88b17297010676b8e0005b3545efd</id>
<content type='text'>
for special attrs like 'checked' or 'multiple', jquery now returns the name or undedefined.

e.g. foo.attr('checked') =&gt; 'checked' || undefined

The solution is a combination of updating our tests as well as switching
over to prop() instead which properly returns true/false
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
for special attrs like 'checked' or 'multiple', jquery now returns the name or undedefined.

e.g. foo.attr('checked') =&gt; 'checked' || undefined

The solution is a combination of updating our tests as well as switching
over to prop() instead which properly returns true/false
</pre>
</div>
</content>
</entry>
</feed>
