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
The code "this.SVG =" causes runtime error when using html-query-plan in Angular.
A workaround is to comment this out in qp.js / qp.min.js. So going from this:
var SVG = this.SVG = function(element) {
to this:
var SVG = /*this.SVG =*/ function(element) {
Functionality seems the same. If this code really isn't necessary, it would be nice for the npm install to have this fix.
FYI, one way to use html-query-plan in Angular is to do:
import * as QP from 'html-query-plan';
@import '~html-query-plan/css/qp.css';
var container:HTMLElement | null = document.getElementById("MyContainer"); if( container ) { QP.showPlan( container, planXMLText ); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The code "this.SVG =" causes runtime error when using html-query-plan in Angular.
A workaround is to comment this out in qp.js / qp.min.js. So going from this:
var SVG = this.SVG = function(element) {
to this:
var SVG = /*this.SVG =*/ function(element) {
Functionality seems the same. If this code really isn't necessary, it would be nice for the npm install to have this fix.
FYI, one way to use html-query-plan in Angular is to do:
import * as QP from 'html-query-plan';
@import '~html-query-plan/css/qp.css';
The text was updated successfully, but these errors were encountered: