Skip to content

Commit fa83131

Browse files
committed
Bundle release 6.3.0
1 parent 53d1c56 commit fa83131

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

dist/vast-client-node.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,9 @@ function createIcon() {
765765
iconClickThroughURLTemplate: null,
766766
iconClickTrackingURLTemplates: [],
767767
iconViewTrackingURLTemplate: null,
768-
iconClickFallbackImages: []
768+
iconClickFallbackImages: [],
769+
altText: null,
770+
hoverText: null
769771
};
770772
}
771773

@@ -990,6 +992,8 @@ function parseIcon(iconElement) {
990992
icon.pxratio = iconElement.getAttribute('pxratio') || '1';
991993
icon.offset = parserUtils.parseDuration(iconElement.getAttribute('offset'));
992994
icon.duration = parserUtils.parseDuration(iconElement.getAttribute('duration'));
995+
icon.altText = iconElement.getAttribute('altText');
996+
icon.hoverText = iconElement.getAttribute('hoverText');
993997
parserUtils.childrenByName(iconElement, 'HTMLResource').forEach(htmlElement => {
994998
icon.type = htmlElement.getAttribute('creativeType') || 'text/html';
995999
icon.htmlResource = parserUtils.parseNodeText(htmlElement);

dist/vast-client-node.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vast-client.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,9 @@ function createIcon() {
761761
iconClickThroughURLTemplate: null,
762762
iconClickTrackingURLTemplates: [],
763763
iconViewTrackingURLTemplate: null,
764-
iconClickFallbackImages: []
764+
iconClickFallbackImages: [],
765+
altText: null,
766+
hoverText: null
765767
};
766768
}
767769

@@ -986,6 +988,8 @@ function parseIcon(iconElement) {
986988
icon.pxratio = iconElement.getAttribute('pxratio') || '1';
987989
icon.offset = parserUtils.parseDuration(iconElement.getAttribute('offset'));
988990
icon.duration = parserUtils.parseDuration(iconElement.getAttribute('duration'));
991+
icon.altText = iconElement.getAttribute('altText');
992+
icon.hoverText = iconElement.getAttribute('hoverText');
989993
parserUtils.childrenByName(iconElement, 'HTMLResource').forEach(htmlElement => {
990994
icon.type = htmlElement.getAttribute('creativeType') || 'text/html';
991995
icon.htmlResource = parserUtils.parseNodeText(htmlElement);

dist/vast-client.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)