Tom Yam
Tom Yam
Thanks. I get the same error with it: ``` html $(document).ready(function() { $("#sign1").jSignature(); $("#sign2").jSignature(); }); ```
I can't replicate it on [http://www.unbolt.net/jSignature](http://www.unbolt.net/jSignature). Please check these pages: Two pads, no body tag - crashes on page resize [http://s3-eu-west-1.amazonaws.com/tepez/signature1.html](http://s3-eu-west-1.amazonaws.com/tepez/signature1.html) Two pads, basic twitter bootstrap page - works perfect...
I think it rather has something to do with an un-handled edge case, we get into by initializing a signature pad when it's parent has size 0, e.g. because it's...
It seems you fixed it. Thanks! One small issue. In http://s3-eu-west-1.amazonaws.com/tepez/signature5.html the bottom pad is smaller than the top pad. If I call `$(".jsignature-parent").resize()` in the console, the bottom pad...
I suspect there is still a problem. In http://s3-eu-west-1.amazonaws.com/tepez/signature5.html, I put a break-point on the line `var w = $parent.width()`. This line is called twice, but `$parent` is `sign1` in...
This actually solved it for me ``` css body, .modal-open .page-container, .modal-open .page-container .navbar-fixed-top, .modal-open .modal-container { overflow-y: scroll; } .modal-scrollable { direction: ltr; } ``` And on RTL pages,...
I'm using ocLazyLoad to load [ui-grid](https://github.com/angular-ui/ui-grid). [`ui-grid.js`](https://github.com/angular-ui/bower-ui-grid/blob/master/ui-grid.js) contains many modules and your modules have to depend on them in order for them to be available. _Just like a bundle of...
None of the solution proposed here worked for me. The solution by [hvojdani](https://github.com/angular-ui/ui-grid/issues/6193#issuecomment-307549980) is no longer needed since RTL scrollLeft [type](https://github.com/othree/jquery.rtl-scroll-type) is now detected correctly in Chrome (you can verify...
@mjeanroy Tried this PR and the https://github.com/sindresorhus/gulp-jasmine/blob/v4.0.0/test.js#L69 spec failed for us. Any idea why? Tried to debug this but was too difficult
Also got hit by this, this is what I did to detect the cyclic dependecy: ```js function deleteRequireCache(id, paths) { if (!id || id.indexOf('node_modules') !== -1) { return; } if...