Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

temple-backbone

Package Overview
Dependencies
Maintainers
2
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

temple-backbone - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

.npmignore

8

lib/backbone.js

@@ -36,5 +36,5 @@ (function ( global, factory ) {

this.target.on("change", this._onChange = function() {
for (var k in this.changed) {
model.set(k, this.changed[k], { reset: true });
this.target.on("change sync", this._onChange = function() {
for (var k in this.attributes) {
model.set(k, this.attributes[k], { reset: true });
}

@@ -64,3 +64,3 @@ });

destroy: function() {
this.target.off("change", this._onChange);
this.target.off("change sync", this._onChange);
}

@@ -67,0 +67,0 @@ }, {

{
"name": "temple-backbone",
"description": "Adds Backbone specific handlers to Temple.",
"version": "1.1.1",
"version": "1.1.2",
"author": "Beneath the Ink <info@beneaththeink.com>",
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"contributors": [

@@ -7,0 +10,0 @@ {

@@ -1,2 +0,2 @@

# Temple Bacbone
# Temple Backbone

@@ -27,3 +27,3 @@ Adds Backbone specific handlers to [Temple](https://github.com/BeneathTheInk/Temple).

view.set("bone", new Backbone.Model({ foo: "bar" }));
view.get("foo"); // "bar"
view.get("bone.foo"); // "bar"
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc