getting an error `object doesn't support property or method 'remove'` from line 10395 in `ui-grid-unstable.js` the related method: ``` js 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](http://ui-grid.info/docs/#/tutorial/120_RTL)