Skip to content

Commit d279134

Browse files
authored
Fix problem with link on quickstart dialog (#164)
1 parent a8037dc commit d279134

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

webui/src/js/appController.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @license
3-
* Copyright (c) 2014, 2021, Oracle and/or its affiliates.
3+
* Copyright (c) 2014, 2022, Oracle and/or its affiliates.
44
* Licensed under The Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl/
55
*/
66

@@ -37,7 +37,7 @@ function(ko, Context, ResponsiveUtils, ResponsiveKnockoutUtils, ModuleElementUti
3737
}
3838
};
3939

40-
document.getElementById('globalBody').addEventListener('click', this.clickHandler);
40+
document.body.addEventListener('click', this.clickHandler);
4141

4242
let mainModule = window.api.utils.mainModule;
4343
mainModule = mainModule ? mainModule: 'app-main';

webui/src/js/views/quickstart/page5-view.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
Copyright (c) 2021, Oracle and/or its affiliates.
2+
Copyright (c) 2021, 2022, Oracle and/or its affiliates.
33
Licensed under The Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl/
44
-->
55

@@ -8,7 +8,7 @@ <h6><oj-bind-text value="[[labelMapper('title')]]"></oj-bind-text></h6>
88
<div class="wkt-quickstart-image">
99
<img alt="icon" src="css/images/navbar-model.png" />
1010
</div>
11-
<div class="wkt-quickstart-text">
11+
<div class="wkt-quickstart-text wkt-link-container">
1212
<p><oj-bind-text value="[[labelMapper('paragraph-1')]]"></oj-bind-text></p>
1313
<p><oj-bind-text value="[[labelMapper('list1-heading')]]"></oj-bind-text></p>
1414
<ul>

0 commit comments

Comments
 (0)