Save the current status to localStorage * @returns {undefined}
()
| 54 | * @returns {undefined} |
| 55 | */ |
| 56 | save() { |
| 57 | this._setItem(this.name, this.records.join(',')); |
| 58 | } |
| 59 | |
| 60 | /** Add a new model with a unique GUID, if it doesn't already have its own ID |
| 61 | * @param {Model} model - The Backbone Model to save to LocalStorage |
no test coverage detected