<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/ngScenario, branch v1.1.5</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>feat(scenario): adds mousedown and mouseup event triggers to scenario</title>
<updated>2013-05-14T19:50:36+00:00</updated>
<author>
<name>Andreas Marek</name>
</author>
<published>2013-05-06T08:20:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=629fb37351ce5778a40a8bc8cd7c1385b382ce75'/>
<id>629fb37351ce5778a40a8bc8cd7c1385b382ce75</id>
<content type='text'>
Added mousedown and mouseup event triggers to scenadio dsl 'element' expression.
Added mousedown and mouseup to the custom jquery trigger method to generate real events.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added mousedown and mouseup event triggers to scenadio dsl 'element' expression.
Added mousedown and mouseup to the custom jquery trigger method to generate real events.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(scenario): update to use our angular-scenario.js rather then karma</title>
<updated>2013-05-08T23:40:35+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2013-05-08T23:40:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=29efd39745ac14c89ef8bc79993b51450fd0a8b9'/>
<id>29efd39745ac14c89ef8bc79993b51450fd0a8b9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($sniffer): Add support for supportsAnimations flag for detecting CSS Animations browser support</title>
<updated>2013-05-08T22:40:37+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-05-07T14:29:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=88c3480aff79e1ff5b1ed8bd7f1e05df8ea1e068'/>
<id>88c3480aff79e1ff5b1ed8bd7f1e05df8ea1e068</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test(modules): fix module tests which got disabled by ngMobile</title>
<updated>2013-04-18T21:34:53+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-04-18T19:50:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=5da6b125a7447b4bbabb88b2d82b5634b55c3aea'/>
<id>5da6b125a7447b4bbabb88b2d82b5634b55c3aea</id>
<content type='text'>
When ngMobile was merged in, we accidentaly included angular-scenario.js
in the test file set for modules. Loading this file overrode jasmine's
`it` and `describe` global functions which essentially disabled all of
~200 unit tests for wrapped modules.

This change refactors the code to run the wrapped module tests.

I had to extract browserTrigger from scenario runner in order to achieve
this without code duplication.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When ngMobile was merged in, we accidentaly included angular-scenario.js
in the test file set for modules. Loading this file overrode jasmine's
`it` and `describe` global functions which essentially disabled all of
~200 unit tests for wrapped modules.

This change refactors the code to run the wrapped module tests.

I had to extract browserTrigger from scenario runner in order to achieve
this without code duplication.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(Scenario): correct bootstrap issue on IE</title>
<updated>2013-04-13T07:42:51+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-04-13T06:24:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ab755a25f9ca3f3f000623071d8de3ddc4b1d78e'/>
<id>ab755a25f9ca3f3f000623071d8de3ddc4b1d78e</id>
<content type='text'>
we need to set the deferred bootstrap flag via window.name after the iframe's
src has been set, otherwise IE will reset it to empty string
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
we need to set the deferred bootstrap flag via window.name after the iframe's
src has been set, otherwise IE will reset it to empty string
</pre>
</div>
</content>
</entry>
<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>
</feed>
