Lachlan Pearce

Results 9 comments of Lachlan Pearce

Hi, I have done some more reading in the Instagram developer documents and found there are some limits on the API while your client is in Sandbox mode. This should...

Yes, I'm getting the same output on IE Edge

Okay, looks like the horizontal absolute position (left:...) is being set correct, but the vertical positions are all the same: "top: 250px;" (in my case as I have the height...

I'm using the Angular version. I've just setup a static version using jQuery only and that works in IE Edge. deveric19, are you using the Angular version or just the...

Confirmed this issue isn't present in IE 11

These lines (#341 - #344) in jQCloud.js: ``` word_size = { width: word_span.width(), height: word_span.height() }; ``` The height of the word span is calculated as zero. I checked this...

I re-wrote the height property to be fixed at 40 like this ``` word_size = { width: word_span.width(), height: 40 }; ``` Now it's rendering (almost) correctly. This is not...

If the height isn't set correctly to the word_size object, later on when the top positioning is calculated: ``` word_size.top = this.options.center.y*this.options.height - word_size.height / 2.0; ``` so: ``` word_size.top...

Quick fix, seems to work in IE Edge and Chrome: Write lines (#341 - #344) in jQCloud.js like this: ``` word_size = { width: word_span.width(), height: $(word_span.children()[0]).height() }; ``` Looks...