Skip to content

Commit eaabb4d

Browse files
committed
Change one more link from 'raw.github.com' to 'raw.githubusercontent.com'
1 parent 0ded6ec commit eaabb4d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

test/tests.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)