File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -161,11 +161,11 @@ <h2>
161161
162162 < table >
163163 < tr >
164- < td > < a class ="punch " href ="https://raw.githubusercontent.com/PaulUithol/Backbone-relational/a7634e7d9deac64e3da455a3fde13b96ae253612/backbone-relational.js "> Latest Release (0.9 .0)</ a > </ td >
164+ < td > < a class ="punch " href ="https://raw.githubusercontent.com/PaulUithol/Backbone-relational/a7634e7d9deac64e3da455a3fde13b96ae253612/backbone-relational.js "> Latest Release (0.10 .0)</ a > </ td >
165165 < td class ="text "> < i > ~70kb. Full source, uncompressed, lots of comments.</ i > </ td >
166166 </ tr >
167167 < tr >
168- < td > < a class ="punch " href ="https://raw.github .com/PaulUithol/Backbone-relational/master/backbone-relational.js "> Development Version</ a > </ td >
168+ < td > < a class ="punch " href ="https://raw.githubusercontent .com/PaulUithol/Backbone-relational/master/backbone-relational.js "> Edge Version</ a > </ td >
169169 </ tr >
170170 </ table >
171171
Original file line number Diff line number Diff line change @@ -4244,13 +4244,11 @@ $(document).ready(function() {
42444244
42454245 // Check removing `[]`
42464246 var result = cars . remove ( [ ] ) ;
4247- console . log ( result ) ;
42484247 ok ( result === false , "Removing `[]` is a noop (results in 'false', no models removed)" ) ;
42494248 ok ( cars . length === 2 , "Still 2 cars" ) ;
42504249
42514250 // Check removing `null`
42524251 result = cars . remove ( null ) ;
4253- console . log ( result ) ;
42544252 ok ( _ . isUndefined ( result ) , "Removing `null` is a noop" ) ;
42554253 ok ( cars . length === 2 , "Still 2 cars" ) ;
42564254
@@ -4264,6 +4262,7 @@ $(document).ready(function() {
42644262
42654263 // Check setting `null`
42664264 ok ( _ . isUndefined ( cars . set ( null ) ) , "Set `null` empties collection" ) ;
4265+ console . log ( cars , cars . length ) ;
42674266 ok ( cars . length === 0 , "All cars gone" ) ;
42684267 } ) ;
42694268
You can’t perform that action at this time.
0 commit comments