lmvalenzuela
New member
I'm trying to embed in a Hubspot html+hubl page, and just by adding the js files, I'm starting to get problems in the console:
I have control over head's files loaded by the page, and for now, the only files I've been downloading to the page are:
basic.css: https://cdn2.hubspot.net/hub/6860826/hub_generated/template_assets/28440116902/1587056131407/TRUVAC_March2020_Theme/360/Prodigy/imagerotator/html/css/basic.min.css
jquery-3.4.1.min.min.js: https://cdn2.hubspot.net/hub/6860826/hub_generated/template_assets/28440170370/1587056153868/TRUVAC_March2020_Theme/360/Prodigy/imagerotator/html/js/jquery-3.4.1.min.min.js
and
https://cdn2.hubspot.net/hub/6860826/hub_generated/template_assets/28440116906/1587056133269/TRUVAC_March2020_Theme/360/Prodigy/imagerotator/html/js/imagerotator.min.js
The code of the page:
Code:
SyntaxError: missing : after property idimagerotator.min.js:1:622
I have control over head's files loaded by the page, and for now, the only files I've been downloading to the page are:
basic.css: https://cdn2.hubspot.net/hub/6860826/hub_generated/template_assets/28440116902/1587056131407/TRUVAC_March2020_Theme/360/Prodigy/imagerotator/html/css/basic.min.css
jquery-3.4.1.min.min.js: https://cdn2.hubspot.net/hub/6860826/hub_generated/template_assets/28440170370/1587056153868/TRUVAC_March2020_Theme/360/Prodigy/imagerotator/html/js/jquery-3.4.1.min.min.js
and
https://cdn2.hubspot.net/hub/6860826/hub_generated/template_assets/28440116906/1587056133269/TRUVAC_March2020_Theme/360/Prodigy/imagerotator/html/js/imagerotator.min.js
The code of the page:
Code:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{ content.html_title }}</title>
<meta name="description" content="{{ content.meta_description }}">
{{ standard_header_includes |cut('https://static.hsappstatic.net/jquery-libs/static-1.1/jquery/jquery-1.7.1.js') }}
<link type="text/css" rel="stylesheet" href="{{ get_asset_url('/TRUVAC_March2020 Theme/360/Prodigy/imagerotator/html/css/basic.css') }}"/>
<script type="text/javascript" src="{{ get_asset_url('/TRUVAC_March2020 Theme/360/Prodigy/imagerotator/html/js/jquery-3.4.1.min.js') }}"></script>
<script type="text/javascript" src="{{ get_asset_url('/TRUVAC_March2020 Theme/360/Prodigy/imagerotator/html/js/imagerotator.js') }}"></script>
</head>
<body>
{{ standard_footer_includes |cut('https://static.hsappstatic.net/HubspotToolsMenu/static-1.62/js/index.js') }}
</body>
</html>