<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/ngScenario, branch v1.2.0-rc.3</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix(ngScenario): remove redundant assignment</title>
<updated>2013-10-07T18:44:03+00:00</updated>
<author>
<name>Pete Bacon Darwin</name>
</author>
<published>2013-10-07T18:29:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=a80e96cea184b392505f0a292785a5c66d45e165'/>
<id>a80e96cea184b392505f0a292785a5c66d45e165</id>
<content type='text'>
Closes #4315
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #4315
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(browserTrigger): allow support for custom timeStamps in events</title>
<updated>2013-09-26T18:19:43+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-09-25T04:20:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=acc2fb84869ac1097434485d56bdc0265120fe34'/>
<id>acc2fb84869ac1097434485d56bdc0265120fe34</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngScenario): fix error message description</title>
<updated>2013-09-25T08:46:32+00:00</updated>
<author>
<name>Pete Bacon Darwin</name>
</author>
<published>2013-09-25T08:46:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f8f8f754b02459bb789247476cc0da63d2d7370f'/>
<id>f8f8f754b02459bb789247476cc0da63d2d7370f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(scenario): include "not " in error messages if test is inverted</title>
<updated>2013-09-18T11:16:42+00:00</updated>
<author>
<name>Hubert SABLONNIÈRE</name>
</author>
<published>2013-09-18T11:14:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=3589f17824376e9db4e8d002caeb4483943eeb18'/>
<id>3589f17824376e9db4e8d002caeb4483943eeb18</id>
<content type='text'>
Closes #3840
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #3840
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(browserTrigger): do not use document.createEvent method</title>
<updated>2013-09-07T06:30:57+00:00</updated>
<author>
<name>Pete Bacon Darwin</name>
</author>
<published>2013-09-07T06:19:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4def730de706170995cfb9f62da6397b7cc18285'/>
<id>4def730de706170995cfb9f62da6397b7cc18285</id>
<content type='text'>
Firefox 23 has deprecated the use of createEvent for transition and
animation events.  We must now use `new TransitionEvent()` and
`new AnimationEvent()` if they are available.

But of course IE doesn't support this format correctly so we must wrap
the attempt in a try block and revert to document.createEvent if necessary..
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Firefox 23 has deprecated the use of createEvent for transition and
animation events.  We must now use `new TransitionEvent()` and
`new AnimationEvent()` if they are available.

But of course IE doesn't support this format correctly so we must wrap
the attempt in a try block and revert to document.createEvent if necessary..
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngScenario): provide event parameters as object</title>
<updated>2013-09-06T21:00:37+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-09-06T20:06:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=28f56a383e9d1ff378e3568a3039e941c7ffb1d8'/>
<id>28f56a383e9d1ff378e3568a3039e941c7ffb1d8</id>
<content type='text'>
BREAKING CHANGE: browserTrigger now uses an eventData object instead of direct parameters for mouse events.
To migrate, place the `keys`,`x` and `y` parameters inside of an object and place that as the third parameter
for the browserTrigger function.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BREAKING CHANGE: browserTrigger now uses an eventData object instead of direct parameters for mouse events.
To migrate, place the `keys`,`x` and `y` parameters inside of an object and place that as the third parameter
for the browserTrigger function.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(scenario): expose jQuery for usage outside of angular scenario</title>
<updated>2013-07-31T22:50:12+00:00</updated>
<author>
<name>Andreas Marek</name>
</author>
<published>2013-07-24T19:20:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=3fdbe81a337c39027929c415e719493755cd8583'/>
<id>3fdbe81a337c39027929c415e719493755cd8583</id>
<content type='text'>
The global jQuery reference is removed by angular scenario and only a local scoped reference is kept. To make jQuery available for other code, a new reference angular.scenario.jQuery is added.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The global jQuery reference is removed by angular scenario and only a local scoped reference is kept. To make jQuery available for other code, a new reference angular.scenario.jQuery is added.
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(*): fixed typos and ngdoc parameter names</title>
<updated>2013-07-27T18:53:41+00:00</updated>
<author>
<name>Carl Danley</name>
</author>
<published>2013-07-22T15:01:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=258e9862840f9d45709664e0e5b2a18540d8828d'/>
<id>258e9862840f9d45709664e0e5b2a18540d8828d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngScenario): select().option(val) should prefer exact value match</title>
<updated>2013-07-12T09:05:23+00:00</updated>
<author>
<name>Stephen Merity</name>
</author>
<published>2013-06-03T08:09:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=22a9b1ac07f98d07e1e5d71ce961411b5fa9b42d'/>
<id>22a9b1ac07f98d07e1e5d71ce961411b5fa9b42d</id>
<content type='text'>
With select(...).option(val) it previously would select the first node
which contains the value, even if an exact match was available.
This fix prefers exact matches if available, otherwise it reverts
to the previous 'contains' behaviour for backwards compatibility.

Closes #2856
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
With select(...).option(val) it previously would select the first node
which contains the value, even if an exact match was available.
This fix prefers exact matches if available, otherwise it reverts
to the previous 'contains' behaviour for backwards compatibility.

Closes #2856
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(jqLite): switch bind/unbind to more recent jQuery on/off</title>
<updated>2013-06-19T19:53:24+00:00</updated>
<author>
<name>Michał Gołębiowski</name>
</author>
<published>2013-06-19T19:52:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f1b94b4b599ab701bc75b55bbbbb73c5ef329a93'/>
<id>f1b94b4b599ab701bc75b55bbbbb73c5ef329a93</id>
<content type='text'>
jQuery switched to a completely new event binding implementation as of
1.7.0, centering around on/off methods instead of previous bind/unbind.
This patch makes jqLite match this implementation while still supporting
previous bind/unbind methods.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
jQuery switched to a completely new event binding implementation as of
1.7.0, centering around on/off methods instead of previous bind/unbind.
This patch makes jqLite match this implementation while still supporting
previous bind/unbind methods.
</pre>
</div>
</content>
</entry>
</feed>
