-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
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
angular-vertilize requires jQuery #10
Comments
👍 I load jQuery with jspm and ended up needing to do this:
|
👍 Shouldn't need to require JQuery. I'm testing now to see if this could be a replacement: myStyle = window.getComputedStyle(element[0]);
myWidth = parseInt(myStyle.getPropertyValue('width'),10); |
Chiming in here as well with the error:
Since we do not use jQuery, we cannot use this directive :( |
Might be possible to use the following to get around the jQuery requirement? Haven't tried but it provides 'outerWidth' function. |
+1 We also have a project without jQuery... Any progress on this? |
This factoid should probably be mentioned in the documentation. Our project is jquery-free :)
This function is required:
element.outerWidth()
The text was updated successfully, but these errors were encountered: