Comparing version 4.1.0 to 4.1.1
14
api.json
@@ -7,3 +7,3 @@ { | ||
"filename": "src/space-pen.coffee", | ||
"srcUrl": "https://github.com/atom/space-pen/blob/v4.1.0/src/space-pen.coffee#L74", | ||
"srcUrl": "https://github.com/atom/space-pen/blob/v4.1.1/src/space-pen.coffee#L74", | ||
"sections": [], | ||
@@ -14,3 +14,3 @@ "classMethods": [ | ||
"sectionName": null, | ||
"srcUrl": "https://github.com/atom/space-pen/blob/v4.1.0/src/space-pen.coffee#L84", | ||
"srcUrl": "https://github.com/atom/space-pen/blob/v4.1.1/src/space-pen.coffee#L84", | ||
"visibility": "Public", | ||
@@ -37,3 +37,3 @@ "summary": "Add the given subview wired to an outlet with the given name", | ||
"sectionName": null, | ||
"srcUrl": "https://github.com/atom/space-pen/blob/v4.1.0/src/space-pen.coffee#L90", | ||
"srcUrl": "https://github.com/atom/space-pen/blob/v4.1.1/src/space-pen.coffee#L90", | ||
"visibility": "Public", | ||
@@ -54,3 +54,3 @@ "summary": "Add a text node with the given text content", | ||
"sectionName": null, | ||
"srcUrl": "https://github.com/atom/space-pen/blob/v4.1.0/src/space-pen.coffee#L96", | ||
"srcUrl": "https://github.com/atom/space-pen/blob/v4.1.1/src/space-pen.coffee#L96", | ||
"visibility": "Public", | ||
@@ -77,3 +77,3 @@ "summary": "Add a new tag with the given name", | ||
"sectionName": null, | ||
"srcUrl": "https://github.com/atom/space-pen/blob/v4.1.0/src/space-pen.coffee#L101", | ||
"srcUrl": "https://github.com/atom/space-pen/blob/v4.1.1/src/space-pen.coffee#L101", | ||
"visibility": "Public", | ||
@@ -96,3 +96,3 @@ "summary": "Add new child DOM nodes from the given raw HTML string.", | ||
"sectionName": null, | ||
"srcUrl": "https://github.com/atom/space-pen/blob/v4.1.0/src/space-pen.coffee#L209", | ||
"srcUrl": "https://github.com/atom/space-pen/blob/v4.1.1/src/space-pen.coffee#L209", | ||
"visibility": "Public", | ||
@@ -119,3 +119,3 @@ "summary": "Register a command handler on this element.", | ||
"sectionName": null, | ||
"srcUrl": "https://github.com/atom/space-pen/blob/v4.1.0/src/space-pen.coffee#L216", | ||
"srcUrl": "https://github.com/atom/space-pen/blob/v4.1.1/src/space-pen.coffee#L216", | ||
"visibility": "Public", | ||
@@ -122,0 +122,0 @@ "summary": "Preempt events registered with jQuery's `::on`.", |
@@ -162,7 +162,7 @@ (function() { | ||
if (onDOM) { | ||
return this.attached(); | ||
return typeof this.attached === "function" ? this.attached() : void 0; | ||
} | ||
}; | ||
this.beforeRemove = function() { | ||
return this.detached(); | ||
return typeof this.detached === "function" ? this.detached() : void 0; | ||
}; | ||
@@ -169,0 +169,0 @@ } else if (useCustomElementAttachHooks) { |
{ | ||
"name": "space-pen", | ||
"version": "4.1.0", | ||
"version": "4.1.1", | ||
"description": "Write markup on the final frontier", | ||
@@ -5,0 +5,0 @@ "main": "./lib/space-pen.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
277378