cowboy / jquery-resize

A resize event for ALL your jQueries!

Home Page:http://benalman.com/projects/jquery-resize-plugin/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Handle 'data' null/undefined

thellvig opened this issue · comments

Hi, I believe a check for data being null/undefined would improve on your code.
I would like to change line 258 [ if (width !== data.w || height !== data.h) ]
to [ if (data && (width !== data.w || height !== data.h)) ] in the source.

Yours truly