Skip to content

Commit 6a82b0c

Browse files
committed
Merge pull request #3259 from megawac/patch-1
Allow MDN to select an appropriate localization [ci-skip]
2 parents 56fbfc1 + fc6b2a6 commit 6a82b0c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1660,7 +1660,7 @@ <h2 id="Collection">Backbone.Collection</h2>
16601660
collection. This can be used to serialize and persist the
16611661
collection as a whole. The name of this method is a bit confusing, because
16621662
it conforms to
1663-
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#toJSON_behavior">JavaScript's JSON API</a>.
1663+
<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#toJSON_behavior">JavaScript's JSON API</a>.
16641664
</p>
16651665

16661666
<pre class="runnable">
@@ -1887,7 +1887,7 @@ <h2 id="Collection">Backbone.Collection</h2>
18871887
<br />
18881888
Return a shallow copy of this collection's models, using the same options as
18891889
native
1890-
<a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/slice">Array#slice</a>.
1890+
<a href="https://developer.mozilla.org/JavaScript/Reference/Global_Objects/Array/slice">Array#slice</a>.
18911891
</p>
18921892

18931893
<p id="Collection-length">
@@ -1908,7 +1908,7 @@ <h2 id="Collection">Backbone.Collection</h2>
19081908
<a href="http://underscorejs.org/#sortBy">sortBy</a>
19091909
(pass a function that takes a single argument),
19101910
as a
1911-
<a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/sort">sort</a>
1911+
<a href="https://developer.mozilla.org/JavaScript/Reference/Global_Objects/Array/sort">sort</a>
19121912
(pass a comparator function that expects two arguments),
19131913
or as a string indicating the attribute to sort by.
19141914
</p>
@@ -4410,7 +4410,7 @@ <h2 id="changelog">Change Log</h2>
44104410
A Backbone collection's <tt>comparator</tt> function may now behave
44114411
either like a <a href="http://underscorejs.org/#sortBy">sortBy</a>
44124412
(pass a function that takes a single argument),
4413-
or like a <a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/sort">sort</a>
4413+
or like a <a href="https://developer.mozilla.org/JavaScript/Reference/Global_Objects/Array/sort">sort</a>
44144414
(pass a comparator function that expects two arguments). The comparator
44154415
function is also now bound by default to the collection &mdash; so you
44164416
can refer to <tt>this</tt> within it.

0 commit comments

Comments
 (0)