Results 18 issues of Jason Ian Green

``` var base32 = require("base32-crockford"); base32.encode('l’'); // OUTPUT "dundefinedcg" ```

@irskep I recently merged and created a version 1.0.0 with breaking change of using the new core package. But I don't have permission to publish, so who does that part?...

Add a test for empty object into the `Css_test.js` file and you'll see it fails. ``` it('should delete all classes when data is set to null/undefined', function() { testWith(null); testWith(undefined);...

bug

This has been deprecated as per latest chrome (36). See more here http://dom.spec.whatwg.org/#dom-range-detach Not sure if it has a negative effect, but worth looking into.

question

Currently in `line 133` of `lib/components/c_facets/Drag.js` it looks for the presence of `data-dragEnableEvent` element attribute. There must be a better way than this?

question

It looks like templates get compiled for every instance. Could we cache them in a hash to prevent a new template being compiled for every single instance of the component?

enhancement
question

The following setup complains of `Uncaught MixinError: method trigger already defined in host object` ``` html ``` ``` javascript var Todo = milo.Component.createComponentClass('Todo', ['item']); milo.registry.components.add(Todo); milo(function(){ milo.binder(); }); ```

bug

I have written a new lib based off your json-patch-ot which has the following advantages. - Completely backward compatible with your lib - Fully written and typed in TS -...

**What issue does this pull request resolve?** Remaining dependency updates. This mainly covers ESLint which needs to deal with some new rules and config. **What changes did you make?** Updated...

Scrolling won't be stopped during touch events because of a chrome change ``` [Intervention] Unable to preventDefault inside passive event listener due to target being treated as passive. See https://www.chromestatus.com/features/5093566007214080...

bug