<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/ng/directive, branch v1.0.7</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>doc(ngModel): $setViewValue calls all parsers, not formatters</title>
<updated>2013-05-18T20:18:15+00:00</updated>
<author>
<name>Joakim Blomskøld</name>
</author>
<published>2013-05-18T13:47:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=86cbdb893aa9a0c87ad3463258a828c0d46a3b82'/>
<id>86cbdb893aa9a0c87ad3463258a828c0d46a3b82</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(ngCsp): add more informative details</title>
<updated>2013-05-16T20:28:05+00:00</updated>
<author>
<name>Dean Sofer</name>
</author>
<published>2013-05-16T06:17:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9a73d71f47b280d02ed47efed0b578272b8b0bc5'/>
<id>9a73d71f47b280d02ed47efed0b578272b8b0bc5</id>
<content type='text'>
Transferred from https://github.com/angular/angular.js/wiki/Using-AngularJS-in-a-Chrome-Extension-environment
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Transferred from https://github.com/angular/angular.js/wiki/Using-AngularJS-in-a-Chrome-Extension-environment
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngPluralize): handle the empty string as a valid override</title>
<updated>2013-05-10T19:04:59+00:00</updated>
<author>
<name>Lucas Galfasó</name>
</author>
<published>2013-05-07T12:14:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=42ce8f7f556808da3947aa0bb1c448bbe970bd36'/>
<id>42ce8f7f556808da3947aa0bb1c448bbe970bd36</id>
<content type='text'>
Fix the check for overrides so it is able to handle the empty string

Closes #2575
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix the check for overrides so it is able to handle the empty string

Closes #2575
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(select): ensure empty option is not lost in IE9</title>
<updated>2013-05-07T20:29:44+00:00</updated>
<author>
<name>Chad Smith</name>
</author>
<published>2013-03-19T10:22:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f1a34f0908cf3629da4f97b20d0c77e315e93cb5'/>
<id>f1a34f0908cf3629da4f97b20d0c77e315e93cb5</id>
<content type='text'>
Fix a check inside render for select elements with ngOptions, which
compares the selected property of an element with it's desired state.
Ensure the placeholder, if available, is explicitly selected if the model
value can not be found in the option list.
Without these fixes it's up to the browser implementation to decide which
option to choose. In most browsers, this has the effect of displaying the
first item in the list. In IE9 however, this causes the select to display
nothing.

Closes #2150, #1826
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix a check inside render for select elements with ngOptions, which
compares the selected property of an element with it's desired state.
Ensure the placeholder, if available, is explicitly selected if the model
value can not be found in the option list.
Without these fixes it's up to the browser implementation to decide which
option to choose. In most browsers, this has the effect of displaying the
first item in the list. In IE9 however, this causes the select to display
nothing.

Closes #2150, #1826
</pre>
</div>
</content>
</entry>
<entry>
<title>doc(input): fix small typo in code example</title>
<updated>2013-05-07T08:48:59+00:00</updated>
<author>
<name>Hamish Macpherson</name>
</author>
<published>2013-05-07T00:57:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=bc04afe1835f9c506b946dcb28a13158ace32a70'/>
<id>bc04afe1835f9c506b946dcb28a13158ace32a70</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refact(ngClass): improve performance through bitwise operations</title>
<updated>2013-04-29T09:19:32+00:00</updated>
<author>
<name>Robin Böhm</name>
</author>
<published>2013-04-28T18:05:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=738113bac88b549000d071059d1eea501e9c9db2'/>
<id>738113bac88b549000d071059d1eea501e9c9db2</id>
<content type='text'>
Change modulo % 2 operations to bitwise &amp; 1
Read about this in Nicholas C. Zakas book "High Performance JavaScript"(ISBN: 978-0-596-80279-0)
Use the Fast Parts --&gt; Bitwise Operators --&gt; Page 156++
Proven at http://jsperf.com/modulo-vs-bitwise/11
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change modulo % 2 operations to bitwise &amp; 1
Read about this in Nicholas C. Zakas book "High Performance JavaScript"(ISBN: 978-0-596-80279-0)
Use the Fast Parts --&gt; Bitwise Operators --&gt; Page 156++
Proven at http://jsperf.com/modulo-vs-bitwise/11
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(input): fix typo on max attribute</title>
<updated>2013-04-19T12:43:37+00:00</updated>
<author>
<name>leesei</name>
</author>
<published>2013-04-18T16:20:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=a7d081fac037166fab1ea0b1aacabb6e091a1852'/>
<id>a7d081fac037166fab1ea0b1aacabb6e091a1852</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(select): fix attribute documentation</title>
<updated>2013-04-19T12:37:04+00:00</updated>
<author>
<name>Shyam Seshadri</name>
</author>
<published>2013-04-19T06:44:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ee774f6e5b917dc8611fcc2207c0b49de04d85fc'/>
<id>ee774f6e5b917dc8611fcc2207c0b49de04d85fc</id>
<content type='text'>
Select documentation was still referring to binding to name, when it should be ng-model instead. Fixed it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Select documentation was still referring to binding to name, when it should be ng-model instead. Fixed it.
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(ngBind): fix typo</title>
<updated>2013-04-19T10:58:52+00:00</updated>
<author>
<name>Michal Reichert</name>
</author>
<published>2013-04-18T09:41:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=80f34598f81a209946ab7be0c5149c85350c48d4'/>
<id>80f34598f81a209946ab7be0c5149c85350c48d4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngModel): use paste/cut events in IE to support context menu</title>
<updated>2013-04-17T20:50:07+00:00</updated>
<author>
<name>Mark Dalgleish</name>
</author>
<published>2013-03-21T07:07:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=3ebc2c2442755aa93a908b0ee9e372c8e6e4a924'/>
<id>3ebc2c2442755aa93a908b0ee9e372c8e6e4a924</id>
<content type='text'>
In IE the model is not updated when the input value is modified using the context
menu, e.g. pasting from the clipboard, or cutting all or part of the current value.
To capture these changes, we bind to the proprietary 'paste' and 'cut' events.

Closes #1462
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In IE the model is not updated when the input value is modified using the context
menu, e.g. pasting from the clipboard, or cutting all or part of the current value.
To capture these changes, we bind to the proprietary 'paste' and 'cut' events.

Closes #1462
</pre>
</div>
</content>
</entry>
</feed>
