Dustin Diaz

Results 118 comments of Dustin Diaz

upgrade!! :+1: we are at 1.3.1 https://github.com/ded/bonzo/blob/master/package.json#L4 you could probably also use an Ender upgrade if you haven't done that in a while too. ``` sh npm install ender -g...

now going thru some old ones... these new methods should definitely get included! i imagine they will bench much faster

can you give an example? there's probably a very good reason — if not simply for the sake of speed, and that doing this via Ender would do it anyway.

hmmm.... i suppose so... we'd have to bump up the package a minor version tho

We did this on `Medium.com` in an internal version of ender (just extending `$`). ``` js $.createElement = function (tagName) { return $(document.createElement(tagName)) } ``` there were cases in the...

the shorthands are tricky. especially for ones like `background` or `font` -- in the meantime, stick to using `padding-left` & `padding-top` etc... which ever ones you need specifically.

the goal of most of my core Ender modules was to reduce the cruft that you didn't need in jQuery. getting an offsetTop from an offsetParent is simple, so I...

cool. thanks for reporting this... this doesn't seem too difficult to tackle.