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
Take a look at the IFRAME template: https://github.com/erost/ng-videosharing-embed/blob/master/src/directives/embedvideo.js
template: '<iframe data-ng-attr-id="{{id}} "width="{{width}}" height="{{height}}" data-ng-src="{{trustedVideoSrc}}" allowfullscreen frameborder="0"></iframe>',
Note the data-ng-attr-id="{{id}} " which adds a space (" ") at the end. Should be fixed to:
data-ng-attr-id="{{id}} "
template: '<iframe data-ng-attr-id="{{id}}" width="{{width}}" height="{{height}}" data-ng-src="{{trustedVideoSrc}}" allowfullscreen frameborder="0"></iframe>',
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Take a look at the IFRAME template:
https://github.com/erost/ng-videosharing-embed/blob/master/src/directives/embedvideo.js
template: '<iframe data-ng-attr-id="{{id}} "width="{{width}}" height="{{height}}" data-ng-src="{{trustedVideoSrc}}" allowfullscreen frameborder="0"></iframe>',
Note the
data-ng-attr-id="{{id}} "
which adds a space (" ") at the end. Should be fixed to:template: '<iframe data-ng-attr-id="{{id}}" width="{{width}}" height="{{height}}" data-ng-src="{{trustedVideoSrc}}" allowfullscreen frameborder="0"></iframe>',
The text was updated successfully, but these errors were encountered: