We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38ad92d commit 782397bCopy full SHA for 782397b
app/helpers/VersionHelper.ts
@@ -5,7 +5,7 @@ class VersionHelper {
5
//region Fields
6
7
private static _target : string = 'http://yimello.adriencadet.com/version';
8
- private static _version : string = '0.1.1';
+ private static _version : string = '0.1.2';
9
10
//endregion Fields
11
app/presenters/TourPresenter.ts
@@ -123,6 +123,9 @@ class TourPresenter extends YimelloPresenter {
123
return;
124
}
125
126
+ // Avoid harmful values
127
+ value = SecurityHelper.disarm(value);
128
+
129
// Start to build a new tag
130
tag =
131
DOMElement.fromString('<li><p>' + value + '</p></li>');
0 commit comments