q2apro

Results 96 comments of q2apro

Seems to be here: https://github.com/tuupola/lazyload/pull/429/commits (not added to the core yet) File: https://github.com/tuupola/lazyload/blob/2a4fbfc0b702057338724f8ed2cd09c7db17f403/lazyload.js Further, see here: https://stackoverflow.com/q/11398005/1066234 And with version 1.x: https://github.com/tuupola/lazyload/issues/246 - File: https://github.com/tuupola/lazyload/blob/1.x/jquery.lazyload.js

Why not give a direct link to the source? https://github.com/iDoRecall/selection-menu/blob/gh-pages/src/selection-menu.js#L132 https://github.com/iDoRecall/selection-menu/blob/gh-pages/src/selection-menu.js#L181 For the repo here it should be: https://github.com/xdamman/selection-sharer/blob/master/src/selection-sharer.js#L145 Removing the `selection.length>10` part should do it.

I absolutely need this feature too ... or at least "delete revisions older than 30 days" or alike. I used Etherpad (via Docker) for two months now. About hundred users....

In each revision there is an option: ![image](https://github.com/ether/etherpad-lite/assets/6764548/9d7b27f8-810b-42e9-9d91-35d2fc3372f3) Does this disable the revisions for this pad? If so, this option we would need globally. Disable all revisions for all pads.

That is nice to see, however, admins do not want to manually spend 20 - 30 min a day to go through all pads... also considering data privacy/protection, this would...

Add the `videojs-overlay.js` to the repo. Many developers just like to grab the file. Thanks. Otherwise CDN: https://cdnjs.cloudflare.com/ajax/libs/videojs-overlay/1.1.4/videojs-overlay.css https://cdnjs.cloudflare.com/ajax/libs/videojs-overlay/1.1.4/videojs-overlay.js https://cdnjs.cloudflare.com/ajax/libs/videojs-overlay/1.1.4/videojs-overlay.min.js

Update: I tried to add a center point for the dragging: ` var point_M = svg.addPoint({ x: (point_A.x + point_B.x)*0.5, y: (point_A.y + point_B.y)*0.5 });` ![image](https://user-images.githubusercontent.com/6764548/197766344-1c0ab9d1-fdb4-403d-8975-ba9a7b40b7b0.png) And then I tried...

Ah, I cannot use the hack "officially" otherwise some users will wonder what it means ;-) or worse, get used to it. Maybe you could define the drawing area. For...

Okay, I found a solution, maybe it seems not that beautiful accessing both array slots but it works for my tests: ``` case FOOPLOT_TYPE_POINTS: if(eq.length===null) return null; eq[0][0] = this.parseConst(eq[0][0]);...