We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
getting an error object doesn't support property or method 'remove' from line 10395 in ui-grid-unstable.js
object doesn't support property or method 'remove'
ui-grid-unstable.js
the related method:
s.rtlScrollType = function rtlScrollType() { if (rtlScrollType.type) { return rtlScrollType.type; } var definer = angular.element('<div dir="rtl" style="font-size: 14px; width: 1px; height: 1px; position: absolute; top: -1000px; overflow: scroll">A</div>')[0], type = 'reverse'; document.body.appendChild(definer); if (definer.scrollLeft > 0) { type = 'default'; } else { definer.scrollLeft = 1; if (definer.scrollLeft === 0) { type = 'negative'; } } definer.remove(); rtlScrollType.type = type; return type; };
this happens once you start scrolling in the RTL Support example
The text was updated successfully, but these errors were encountered:
@SoundLogic I'm not seeing this error. Are you getting it in a certain browser?
Sorry, something went wrong.
Yes IE 11, windows 8.1
Jordan Pollard
On Jun 2, 2015, at 11:00, Brian Hann [email protected] wrote: @SoundLogic I'm not seeing this error. Are you getting it in a certain browser? — Reply to this email directly or view it on GitHub.
On Jun 2, 2015, at 11:00, Brian Hann [email protected] wrote:
— Reply to this email directly or view it on GitHub.
15ee480
@SoundLogic Should be fixed with next build.
No branches or pull requests
getting an error
object doesn't support property or method 'remove'
from line 10395 inui-grid-unstable.js
the related method:
this happens once you start scrolling in the RTL Support example
The text was updated successfully, but these errors were encountered: