Muhammad Ali Fahri
Muhammad Ali Fahri
Yesterday its okay, but today i see the same problem. This because files in example directory its does not exist, and only have one directory plugin. ``` # tree /usr/share/doc/fzf/examples...
I think this was related 🤔 #2480 https://bugs.launchpad.net/ubuntu/+source/fzf/+bug/1928670
This often occurs when my router is having problems. I think this happens when unable to reconnect 🤔 Maybe issue #213 also related ``` chisel client --max-retry-interval 1m --fingerprint $(cat...
Next.js 9 will no longer have to install @types/next https://github.com/DefinitelyTyped/DefinitelyTyped/issues/37299
To find offset you can use api `onOffsetChange`. To find the width and height you can user api `onImageLoaded` like this ``` onImageLoaded = function() { console.log(this.$preview.width()); console.log(this.$preview.height()); }; ```
See cropit api. set `smallImage` to `allow`
In jQuery 3 add event like this ``` jQuery.event.addProp('dataTransfer') ```
@kpmdevgr I change [this](https://github.com/scottcheng/cropit/blob/master/src/cropit.js#L102). ``` if (this.options.allowDragNDrop) { $.event.props.push('dataTransfer'); } ``` to ``` if (this.options.allowDragNDrop) { if ($.event.props.push) { //if can push $.event.props.push('dataTransfer'); } else { $.event.addProp('dataTransfer'); } } ```...
[Look here](https://github.com/scottcheng/cropit/issues/251).
#241 seems to work for me.