Joseph Rex
Joseph Rex
`caniuse.getSupport()` returns some unexpected keys in numbers like: ``` { n: 3.5, a: 34, '#3': 33, d: 34, '#1': 34, y: 35 } ``` What do these numbers (`#3`, `#1`)...
FontAwesome uses the right spelling of dribbble and any future font system will probably do. A condition was added for monofonts.
Snippet for using spritesheets with Canvallax ```js (function(win){ win._clx = win._clx || []; win._clx.push(function(canvallax){ 'use strict'; var _originalDraw = canvallax.Image.fn.draw; canvallax.Image.fn.draw = function(ctx,coords){ if ( this.sprite && this.image ) {...
After #18 failed with the `VuePlugin` I tried to do the same with the alternative `ReactWrapper` and though the following code works, ```vue 2 2 import ScrollIndicator from '@/components/ScrollIndicator.vue' import...
Because it assumes `this` will always be `window` here: ```js (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define...
This forces every input to be converted to lower case but I need the correct letter casing from the input. Can we take this out completely or make it optional...