ghuser
ghuser
Also when I `Ctrl+Enter` inside a template literal nothing appears related to this plugin.
How can `jqXHR` be a `Deferred`? `$.ajax("/").resolve("done");` >Uncaught TypeError: $.ajax(...).resolve is not a function The documentation of [Deferred](https://api.jquery.com/category/deferred-object/) says that it has a `resolve()` function.
> more properly it's a subset of Deferred So since `jqXHR` does not seem to inherit `.promise()` from anywhere, shouldn't `jqXHR.promise()` method be documented here: https://api.jquery.com/jQuery.ajax/#jqXHR ?
See: https://daringfireball.net/projects/markdown/syntax#p "When you do want to insert a break tag using Markdown, you end a line with two or more spaces, then type return." input (the input below is...
var templateUrl = require('raw-loader!./mydirective.template.html'); {... template: templateUrl,
I would like to propose a simple feature-request for the specific issue: Why not add a new option `{downloadAttr: true}` which would create links with the [download](https://www.w3schools.com/tags/att_a_download.asp) attribute? As a...
Like this: ```js template(locals, callback){ const $ = require('cheerio').load(locals.template); $('head').append(`console.log('hello from injected script')`) // I don't know what error should be (function or value) so I leave it `undefined` callback(undefined,...
```bash npm uninstall mysql npm i mysql2 ``` ~~`const mysql = require('mysql');`~~ `const mysql = require('mysql2');` ``` const connection = mysql.createConnection({ host: 'server', user: 'u', password: 'p', database: 'schema_name' });...
In v1.2.11 I had to install webpack with `npm i -g webpack`. Then after using `npm i` (node-modules cleaned and other changed files reverted) the process freezes in the following...
codepencil