Socket
Socket
Sign inDemoInstall

space-pen

Package Overview
Dependencies
Maintainers
3
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

space-pen - npm Package Compare versions

Comparing version 4.3.1 to 4.3.2

12

api.json

@@ -7,3 +7,3 @@ {

"filename": "src/space-pen.coffee",
"srcUrl": "https://github.com/atom/space-pen/blob/v4.3.1/src/space-pen.coffee#L75",
"srcUrl": "https://github.com/atom/space-pen/blob/v4.3.2/src/space-pen.coffee#L75",
"sections": [],

@@ -14,3 +14,3 @@ "classMethods": [

"sectionName": null,
"srcUrl": "https://github.com/atom/space-pen/blob/v4.3.1/src/space-pen.coffee#L85",
"srcUrl": "https://github.com/atom/space-pen/blob/v4.3.2/src/space-pen.coffee#L85",
"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.3.1/src/space-pen.coffee#L91",
"srcUrl": "https://github.com/atom/space-pen/blob/v4.3.2/src/space-pen.coffee#L91",
"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.3.1/src/space-pen.coffee#L97",
"srcUrl": "https://github.com/atom/space-pen/blob/v4.3.2/src/space-pen.coffee#L97",
"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.3.1/src/space-pen.coffee#L102",
"srcUrl": "https://github.com/atom/space-pen/blob/v4.3.2/src/space-pen.coffee#L102",
"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.3.1/src/space-pen.coffee#L205",
"srcUrl": "https://github.com/atom/space-pen/blob/v4.3.2/src/space-pen.coffee#L205",
"visibility": "Public",

@@ -99,0 +99,0 @@ "summary": "Preempt events registered with jQuery's `::on`.",

@@ -365,4 +365,12 @@ (function() {

$.fn.view = function() {
var _ref;
return (_ref = this[0]) != null ? _ref.spacePenView : void 0;
var element, viewConstructorName;
if (element = this[0]) {
if (element.__spacePenView != null) {
viewConstructorName = element.__spacePenView.constructor.name;
if (Grim != null) {
Grim.deprecate("Accessing `" + viewConstructorName + "` via `$::view()` is deprecated. Use the raw DOM node or underlying model object instead.");
}
}
return element.spacePenView;
}
};

@@ -369,0 +377,0 @@

{
"name": "space-pen",
"version": "4.3.1",
"version": "4.3.2",
"description": "Write markup on the final frontier",

@@ -39,5 +39,5 @@ "main": "./lib/space-pen.js",

"dependencies": {
"grim": "^0.12.0",
"grim": "^0.13.0",
"underscore-plus": "1.x"
}
}
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