Martin Hansen

Results 20 issues of Martin Hansen

It would be really nice if the parsed JSON string would be exposed as a global variable. This way people can just open devtools and manipulate the data quickly. Something...

See https://github.com/einars/js-beautify/issues/391 and https://github.com/victorporof/Sublime-HTMLPrettify/pull/74 This needs to be resolved among all the projects imo. This just creates problems for the users. Best approach IMO for JsFormat would be to support...

feature
low priority

The expresstion: `[^\.{3}]` used in the compare url regexp does not mean what I think you assume it means. I assume you mean: match anything that does not match three...

I am doing an ```js octo.repos('mokkabonna', 'myrepo').compare('master', 'branch-with-æøå') ``` and get a 400 from github api. If I urlencode the parameter it works fine: ```js octo.repos('mokkabonna', 'myrepo').compare('master', encodeURIComponent('branch-with-æøå')) ``` I...

I use ```js octo.fromUrl('http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}', { sha: 'heads/master' }) ``` But get an error saying sha can't contain slashes. But how else am I going to create the url http://api.github.com/repos/octocat/Hello-World/git/refs/heads/master ?...

It seems `disableHypermedia: true` is not properly producing the expected result. It gives me the urls, but also the functions, I expect no functions at all. ```js var Octokat =...

If I understand the readme correctly I should be able to pass custom args like this: `grunt karma:unit --reporters=spec` But it gives me the standard reporter in the grunt config....

needs: investigation

Either clean whole directory and install new hooks. Or more unobtrusive, check all hooks if they are previously installed by this grunt plugin, and if it is removed from gruntfile...

enhancement

This means instead of using `require('module-name')` we use `import myModule from 'my-module'` And instead of `module.exports = {}` we use `export const something = function` etc. Read more about modules...

help wanted

https://github.com/mokkabonna/vue-async-methods/blob/85e59f254c98087a3748372e51fd4771fd30a620/index.js#L3 Double check that all elements listed here https://developer.mozilla.org/en-US/docs/Web/HTML/Block-level_elements are included

help wanted