File tree Expand file tree Collapse file tree 5 files changed +25
-9
lines changed
Expand file tree Collapse file tree 5 files changed +25
-9
lines changed Original file line number Diff line number Diff line change 1+ <a name =" 0.2.3 " ></a >
2+ # 0.2.3 (2014-01-20)
3+
4+
5+ ## Bug Fixes
6+
7+ - ** bo-if:**
8+ - Ensures that we both process newly added binders from bo-if, and that
9+ we only process each binder once ([ d11f863] ( https://github.com/Pasvaz/bindonce/commit/e091c273bbd17603d410fecc363874f0d1e6f38e ) )
10+
11+ ## Features
12+
13+ - ** Minification:**
14+ - add min file ([ 47277ee] ( https://github.com/Pasvaz/bindonce/commit/47277eedd092b3210de362c725a7dadcddac8e87 ) )
15+ - ** Changelog:**
16+ - Created a changelog file
Original file line number Diff line number Diff line change 22 "use strict" ;
33 /**
44 * Bindonce - Zero watches binding for AngularJs
5- * @version v0.2.2 - 2013-05-07
5+ * @version v0.2.3 - 2013-05-07
66 * @link https://github.com/Pasvaz/bindonce
77 * @author Pasquale Vazzana <pasqualevazzana@gmail.com>
88 * @license MIT License, http://www.opensource.org/licenses/MIT
101101 }
102102 } ,
103103
104- runBinders : function ( )
104+ runBinders : function ( )
105105 {
106- while ( this . binders . length > 0 ) {
106+ while ( this . binders . length > 0 )
107+ {
107108 var binder = this . binders . shift ( ) ;
108- if ( this . group && this . group != binder . group ) continue ;
109+ if ( this . group && this . group != binder . group ) continue ;
109110 var value = binder . scope . $eval ( ( binder . interpolate ) ? $interpolate ( binder . value ) : binder . value ) ;
110- switch ( binder . attr )
111+ switch ( binder . attr )
111112 {
112113 case 'if' :
113114 if ( toBoolean ( value ) )
167168 }
168169 }
169170 this . ran = true ;
170- this . binders = [ ] ;
171171 }
172172 } ;
173173
Original file line number Diff line number Diff line change 11{
22 "name" : " angular-bindonce" ,
3- "version" : " 0.2.2 " ,
3+ "version" : " 0.2.3 " ,
44 "main" : " bindonce.js" ,
55 "description" : " Zero watchers binding directives for AngularJS" ,
66 "homepage" : " https://github.com/Pasvaz/bindonce" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " angular-bindonce" ,
3- "version" : " 0.2.2 " ,
3+ "version" : " 0.2.3 " ,
44 "main" : " bindonce.js" ,
55 "description" : " Zero watchers binding directives for AngularJS" ,
66 "homepage" : " https://github.com/Pasvaz/bindonce" ,
You can’t perform that action at this time.
0 commit comments