diff options
| author | Ben Beltran <ben@nsovocal.com> | 2019-03-14 23:19:58 +0100 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2019-03-14 23:19:58 +0100 |
| commit | b009b50e81b6c1d0d691505b5f5c0418f559bfc0 (patch) | |
| tree | 5fae800e76219eba28634cb236565f9b4bb7a2f7 /atom/packages/ex-mode/node_modules/space-pen/api.json | |
| parent | 4efcafab7f0aa454f9ebe767133654bc9f44e12c (diff) | |
Remove Atom config
Diffstat (limited to 'atom/packages/ex-mode/node_modules/space-pen/api.json')
| -rw-r--r-- | atom/packages/ex-mode/node_modules/space-pen/api.json | 132 |
1 files changed, 0 insertions, 132 deletions
diff --git a/atom/packages/ex-mode/node_modules/space-pen/api.json b/atom/packages/ex-mode/node_modules/space-pen/api.json deleted file mode 100644 index 619f572..0000000 --- a/atom/packages/ex-mode/node_modules/space-pen/api.json +++ /dev/null @@ -1,132 +0,0 @@ -{ - "classes": { - "View": { - "name": "View", - "superClass": "jQuery", - "filename": "src/space-pen.coffee", - "srcUrl": "https://github.com/atom/space-pen/blob/v5.1.1/src/space-pen.coffee#L75", - "sections": [], - "classMethods": [ - { - "name": "subview", - "sectionName": null, - "srcUrl": "https://github.com/atom/space-pen/blob/v5.1.1/src/space-pen.coffee#L85", - "visibility": "Public", - "summary": "Add the given subview wired to an outlet with the given name", - "description": "Add the given subview wired to an outlet with the given name", - "arguments": [ - { - "name": "name", - "description": "{String} name of the subview", - "type": "String", - "isOptional": false - }, - { - "name": "view", - "description": "DOM element or jQuery node subview ", - "type": null, - "isOptional": false - } - ] - }, - { - "name": "text", - "sectionName": null, - "srcUrl": "https://github.com/atom/space-pen/blob/v5.1.1/src/space-pen.coffee#L91", - "visibility": "Public", - "summary": "Add a text node with the given text content", - "description": "Add a text node with the given text content", - "arguments": [ - { - "name": "string", - "description": "{String} text contents of the node ", - "type": "String", - "isOptional": false - } - ] - }, - { - "name": "tag", - "sectionName": null, - "srcUrl": "https://github.com/atom/space-pen/blob/v5.1.1/src/space-pen.coffee#L97", - "visibility": "Public", - "summary": "Add a new tag with the given name", - "description": "Add a new tag with the given name", - "arguments": [ - { - "name": "tagName", - "description": "{String} name of the tag like 'li', etc", - "type": "String", - "isOptional": false - }, - { - "name": "args...", - "description": "other arguments ", - "type": null, - "isOptional": false - } - ] - }, - { - "name": "raw", - "sectionName": null, - "srcUrl": "https://github.com/atom/space-pen/blob/v5.1.1/src/space-pen.coffee#L102", - "visibility": "Public", - "summary": "Add new child DOM nodes from the given raw HTML string.", - "description": "Add new child DOM nodes from the given raw HTML string.", - "arguments": [ - { - "name": "string", - "description": "{String} HTML content ", - "type": "String", - "isOptional": false - } - ] - } - ], - "instanceMethods": [ - { - "name": "preempt", - "sectionName": null, - "srcUrl": "https://github.com/atom/space-pen/blob/v5.1.1/src/space-pen.coffee#L205", - "visibility": "Public", - "summary": "Preempt events registered with jQuery's `::on`.", - "description": "Preempt events registered with jQuery's `::on`.", - "arguments": [ - { - "name": "eventName", - "description": "A event name {String}.", - "type": "String", - "isOptional": false - }, - { - "name": "handler", - "description": "A {Function} to execute when the eventName is triggered. ", - "type": "Function", - "isOptional": false - } - ] - } - ], - "classProperties": [], - "instanceProperties": [], - "visibility": "Public", - "summary": "View class that extends the jQuery prototype.", - "description": "View class that extends the jQuery prototype.\n\nExtending classes must implement a `@content` method.", - "examples": [ - { - "description": "", - "lang": "coffee", - "code": "class Spacecraft extends View\n @content: ->\n @div =>\n @h1 'Spacecraft'\n @ol =>\n @li 'Apollo'\n @li 'Soyuz'\n @li 'Space Shuttle'", - "raw": "```coffee\nclass Spacecraft extends View\n @content: ->\n @div =>\n @h1 'Spacecraft'\n @ol =>\n @li 'Apollo'\n @li 'Soyuz'\n @li 'Space Shuttle'\n```" - }, - { - "description": "Each view instance will have all the methods from the jQuery prototype\navailable on it.", - "lang": "coffee", - "code": " craft = new Spacecraft()\n craft.find('h1').text() # 'Spacecraft'\n craft.appendTo(document.body) # View is now a child of the <body> tag", - "raw": "```coffee\n craft = new Spacecraft()\n craft.find('h1').text() # 'Spacecraft'\n craft.appendTo(document.body) # View is now a child of the <body> tag\n```" - } - ] - } - } -}
\ No newline at end of file |