ryancwalsh
ryancwalsh
@deviantintegral `vagrant destroy` was the nightmare I feared. Lots of corruption and getting stuck. "backup: true" didn't work. I had to nuke everything. So I believe I'm starting completely fresh,...
Okay, thanks. I don't think I was using mysql8 for any particular reason. I see that on my production server I'm only using `mysqld Ver 5.7.29-0ubuntu0.18.04.1 for Linux on x86_64...
I finally got my data converted from MySQL 8 to 5.7 (even though [docs said this downgrade was unsupported](https://dba.stackexchange.com/q/262072/18098)). `lmm` now seems to work: ``` vagrant@vboxHomestead:~/Code/myproject$ sudo lmm status Active...
@willemneal Thanks. I also had found https://www.npmjs.com/package/json-as (which I guess I will use) but felt inclined to rely on a NEAR repo instead (this one).
@Sobient I agree with you that there is a bug. And it's not just with the data attributes. This problem exists with `$.featherlight.defaults.persist = 'shared';` too. I don't know why...
@Sobient I seemed to be able to find a work-around for your problem here: http://jsfiddle.net/073yvv75/19/ But on my own site, the work-around isn't working. I'm not sure why. This has...
I finally figured out a hack that seems to fix the problem I've been experiencing. $.each($('[data-featherlight]:not(:first)'), function (k, v) { $(v).off('click').on('click', function (e) {//hack until https://github.com/noelboss/featherlight/issues/229#issuecomment-287567526 is solved e.preventDefault(); e.stopPropagation();...
@lingtalfi and @eyevandy if you like https://stackoverflow.com/q/42234790/470749 and my answer on that page, they could use an upvote 😉 Glad it helped. I love SO.
I have a similar problem. I have a featherlight popup modal with a form on it. The form has multiple input text boxes. On iPhone, if I click into one...
I agree that https://github.com/ganqqwerty/123-Essential-JavaScript-Interview-Questions#2-what-would-be-the-output-of-following-code-2 is incorrect. ``` (function() { var array1 = []; var array2 = new Array(100); var array3 = new Array(['1',2,'3',4,5.6]); console.log(array1); console.log(array2); console.log(array3); console.log(array3.length); }()); ``` But...