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 672b92c commit 293eac1Copy full SHA for 293eac1
Scalatron/webui/client/Tutorial.js
@@ -27,6 +27,8 @@ Ext.define('TutorialPanel', {
27
this.on('afterrender', function() {
28
var hiddenFrame = this.el.createChild({
29
id: 'tutorialIFrame',
30
+ // Bugfix for firefox and IE
31
+ name: 'tutorialIFrame',
32
tag: 'iframe',
33
src: config.url,
34
width: '0',
@@ -70,7 +72,7 @@ Ext.define('TutorialPanel', {
70
72
var url = urls.getByKey(a.id);
71
73
a.href = url;
74
- var indexOfMarker = url.indexOf("/tutorial/tutorial")
75
+ var indexOfMarker = url.indexOf("/tutorial/tutorial");
76
if(indexOfMarker > 0) {
77
// this URL points inside the tutorial
78
a.target = 'tutorialIFrame';
0 commit comments