Fix a syntax error
This commit is contained in:
parent
6d84494965
commit
5d2c38ba90
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ public class DOM {
|
|||
|
||||
body.addChild ( "script" ).withAttribute ( "src" , "https://code.jquery.com/jquery-3.7.0.min.js" ).withAttribute ( "crossorigin", "anonymous" ).withText ( " " );
|
||||
|
||||
body.addChild ( "script" ).withAttribute ( "type" , "text/javascript" ).withText ( "const popoverTriggerList = document.querySelectorAll('[data-bs-toggle=\"popover\"]')\n" +
|
||||
body.addChild ( "script" ).withAttribute ( "type" , "text/javascript" ).withText ( "const popoverTriggerList = document.querySelectorAll('[data-bs-toggle=\"popover\"]');\n" +
|
||||
"const popoverList = [...popoverTriggerList].map(popoverTriggerEl => new bootstrap.Popover(popoverTriggerEl));" );
|
||||
body.addChild ( "style" ).withText ( "\n" +
|
||||
" .command-popover{\n" +
|
||||
|
|
Loading…
Reference in a new issue