Mako-L
Mako-L
Still relevant.
The spinning is affected even if the font-weight is in the CSS file. I need guidance here. Do you guys know how to fix it or what file I should...
> Hey guys! > > When I am setting the animation with this following pattern: > > ``` > ; > ``` > > The first time the component animates...
> I did make one. It just has the code formated and didnt get accepted and i didnt had time to make a version where is not yet. You said:...
> > @heyman333 I really greatful for the library, but it would be better if we can fix this. This issue is occuring even when I am not using custom...
Try the last version and tell me if the same issue occurs.
Will make some user cases and tests when I have time for my commit.
This is my version: ``` javascript Phantasma.prototype.upload = function (selector, path) { var self = this; return new this.promise(function (resolve, reject) { self.page.uploadFile(selector, path); resolve(); }) } ``` But It...
Version 2 (still doesn't work) ``` javascript Phantasma.prototype.upload = function (selector, path) { var self = this; return new this.promise(function (resolve, reject) { if (fs.existsSync(path)) { self.page.uploadFile(selector, path); console.log(path); resolve();...
Apparently it's phantomjs 2.0 fault. The fix is here : https://github.com/skakri/phantomjs/releases/tag/2.0.1-regression-12506 . Updating phantomjs to 2.0.1 will fix the bug and make the upload method work. So, my questions is:...