Skip to content

Commit

Permalink
Merge branch 'release/1.4.1' (#4255)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgonggrijp committed Feb 26, 2022
2 parents 91ab0de + dac5579 commit 9260f3c
Show file tree
Hide file tree
Showing 17 changed files with 7,693 additions and 3,096 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2010-2019 Jeremy Ashkenas, DocumentCloud
Copyright (c) 2010-2022 Jeremy Ashkenas, DocumentCloud

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
4 changes: 2 additions & 2 deletions backbone-min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions backbone-min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion backbone-min.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions backbone.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Backbone.js 1.4.0
// Backbone.js 1.4.1

// (c) 2010-2019 Jeremy Ashkenas and DocumentCloud
// (c) 2010-2022 Jeremy Ashkenas and DocumentCloud
// Backbone may be freely distributed under the MIT license.
// For all details and documentation:
// http://backbonejs.org
Expand Down Expand Up @@ -44,7 +44,7 @@
var slice = Array.prototype.slice;

// Current version of the library. Keep in sync with `package.json`.
Backbone.VERSION = '1.4.0';
Backbone.VERSION = '1.4.1';

// For Backbone's purposes, jQuery, Zepto, Ender, or My Library (kidding) owns
// the `$` variable.
Expand Down Expand Up @@ -1271,7 +1271,7 @@
if (this._kind === ITERATOR_VALUES) {
value = model;
} else {
var id = this._collection.modelId(model.attributes);
var id = this._collection.modelId(model.attributes, model.idAttribute);
if (this._kind === ITERATOR_KEYS) {
value = id;
} else { // ITERATOR_KEYSVALUES
Expand Down
3,134 changes: 1,581 additions & 1,553 deletions docs/backbone.html

Large diffs are not rendered by default.

465 changes: 7 additions & 458 deletions docs/backbone.localStorage.html

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions docs/docco.css
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ ul.sections > li > div {

/*---------------------- Low resolutions (> 320px) ---------------------*/
@media only screen and (min-width: 320px) {
.pilwrap { display: none; }
.sswrap { display: none; }

ul.sections > li > div {
display: block;
Expand Down Expand Up @@ -330,12 +330,12 @@ ul.sections > li > div {
box-shadow: none;
}

.pilwrap {
.sswrap {
position: relative;
display: inline;
}

.pilcrow {
.ss {
font: 12px Arial;
text-decoration: none;
color: #454545;
Expand All @@ -345,14 +345,14 @@ ul.sections > li > div {
opacity: 0;
-webkit-transition: opacity 0.2s linear;
}
.for-h1 .pilcrow {
.for-h1 .ss {
top: 47px;
}
.for-h2 .pilcrow, .for-h3 .pilcrow, .for-h4 .pilcrow {
.for-h2 .ss, .for-h3 .ss, .for-h4 .ss {
top: 35px;
}

ul.sections > li > div.annotation:hover .pilcrow {
ul.sections > li > div.annotation:hover .ss {
opacity: 1;
}
}
Expand Down
464 changes: 464 additions & 0 deletions docs/examples/backbone.localStorage.html

Large diffs are not rendered by default.

Loading

0 comments on commit 9260f3c

Please sign in to comment.