<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/ngScenario, branch v1.1.4</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>feat(Scenario): autodisable animations when running e2e tests</title>
<updated>2013-04-04T00:40:15+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-04-03T21:36:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=fec4ef38815340e8e5a6b65fd6c08f5c74e701d8'/>
<id>fec4ef38815340e8e5a6b65fd6c08f5c74e701d8</id>
<content type='text'>
animations cause the dom to contain elements that have been removed
from the model but are being animated out.

we could teach the e2e runner to wait for animations but that would
make all tests slower. it should be quite safe to just disable
animations automatically when the app is running via the e2e test
runner.

this change disables only css animations. we should make additional
change that disables js animations as well, but since we don't need
this right now I'm punting on it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
animations cause the dom to contain elements that have been removed
from the model but are being animated out.

we could teach the e2e runner to wait for animations but that would
make all tests slower. it should be quite safe to just disable
animations automatically when the app is running via the e2e test
runner.

this change disables only css animations. we should make additional
change that disables js animations as well, but since we don't need
this right now I'm punting on it.
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(*): fixed typos</title>
<updated>2013-03-29T22:14:55+00:00</updated>
<author>
<name>Pascal Borreli</name>
</author>
<published>2013-03-21T19:09:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9480136d9f062ec4b8df0a35914b48c0d61e0002'/>
<id>9480136d9f062ec4b8df0a35914b48c0d61e0002</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(ngMobile): add ngMobile module with mobile-specific ngClick</title>
<updated>2013-03-14T05:59:06+00:00</updated>
<author>
<name>Braden Shepherdson</name>
</author>
<published>2013-02-08T18:39:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=707c65d5a228b44ab3aea2fad95516fe6c57169a'/>
<id>707c65d5a228b44ab3aea2fad95516fe6c57169a</id>
<content type='text'>
Add a new module ngMobile, with mobile/touch-specific directives.
Add ngClick, which overrides the default ngClick. This ngClick uses touch
events, which are much faster on mobile. On desktop browsers, ngClick
responds to click events, so it can be used for portable sites.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a new module ngMobile, with mobile/touch-specific directives.
Add ngClick, which overrides the default ngClick. This ngClick uses touch
events, which are much faster on mobile. On desktop browsers, ngClick
responds to click events, so it can be used for portable sites.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(scenario): include error messages in XML output</title>
<updated>2013-02-07T12:09:52+00:00</updated>
<author>
<name>Julie</name>
</author>
<published>2012-10-09T18:13:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d46fe3c23fa269dcc10249148f2af14f3db6b066'/>
<id>d46fe3c23fa269dcc10249148f2af14f3db6b066</id>
<content type='text'>
Fix the XML output of scenario tests so that it properly includes error
messages from failing specs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix the XML output of scenario tests so that it properly includes error
messages from failing specs.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(scenario): add mouseover method to the ngScenario dsl</title>
<updated>2013-01-19T05:24:57+00:00</updated>
<author>
<name>Pedro Del Gallego</name>
</author>
<published>2013-01-19T05:24:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2f437e89781cb2b449abb685e36b26ca1cf0fff5'/>
<id>2f437e89781cb2b449abb685e36b26ca1cf0fff5</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): don't trigger input events on IE9</title>
<updated>2013-01-17T07:26:36+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-01-16T18:51:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8b9e6c3501746edb2c9e2d585e8e0eaeb8ba8327'/>
<id>8b9e6c3501746edb2c9e2d585e8e0eaeb8ba8327</id>
<content type='text'>
input.enter() should trigger 'change' rather than 'input' event on IE9 because
input events on IE9 are broken and angular doesn't rely on them
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
input.enter() should trigger 'change' rather than 'input' event on IE9 because
input events on IE9 are broken and angular doesn't rely on them
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(e2eRunner): fail when an option to select does not exist</title>
<updated>2012-12-01T19:05:42+00:00</updated>
<author>
<name>Stephane Bisson</name>
</author>
<published>2012-11-14T04:33:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=15183f3e1fbee031c9595206163962788f98b298'/>
<id>15183f3e1fbee031c9595206163962788f98b298</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-runner): support data-ng and x-ng based attributes</title>
<updated>2012-10-31T20:58:13+00:00</updated>
<author>
<name>Adam Macejak</name>
</author>
<published>2012-10-30T01:54:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=249a1d84e7ac3b8528d317b8b0a80acb5dd9a271'/>
<id>249a1d84e7ac3b8528d317b8b0a80acb5dd9a271</id>
<content type='text'>
Prefixed attributes like data-ng-model and x-ng-model were not being
found by the Selector. It was only looking at ng: and ng- prefixed
attributes.
Added a few tests as well to ensure the aforementioned prefixed
attributes are being matched properly.

Closes #1020
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Prefixed attributes like data-ng-model and x-ng-model were not being
found by the Selector. It was only looking at ng: and ng- prefixed
attributes.
Added a few tests as well to ensure the aforementioned prefixed
attributes are being matched properly.

Closes #1020
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(jstd-scenario-adapter): remove from our repo</title>
<updated>2012-10-18T10:26:51+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-10-18T10:26:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f43cf3b816301ec258bfbb3268f9d13582d82648'/>
<id>f43cf3b816301ec258bfbb3268f9d13582d82648</id>
<content type='text'>
since we don't need the adapter for JsTD (testacular contains its own),
I'm removing this dead code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
since we don't need the adapter for JsTD (testacular contains its own),
I'm removing this dead code.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(scenario): emit RunnerBegin event</title>
<updated>2012-09-11T23:12:41+00:00</updated>
<author>
<name>Shyam Seshadri</name>
</author>
<published>2012-09-07T05:14:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=95276a7e1047c7a3ac6613d8612c62f544388fc9'/>
<id>95276a7e1047c7a3ac6613d8612c62f544388fc9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
