Skip to content

Commit b48d5bf

Browse files
committedMay 10, 2012
* update for quick start
1 parent c203ae6 commit b48d5bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎plugins-client/ext.quickstart/quickstart.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ module.exports = ext.register("ext/quickstart/quickstart", {
5656
}
5757
},
5858
{
59-
el : winDbgConsole,
59+
el : self["winDbgConsole"],
6060
name : "qsCLI",
6161
pos: "top"
6262
}
@@ -122,7 +122,7 @@ module.exports = ext.register("ext/quickstart/quickstart", {
122122
arrangeQSImages : function() {
123123
var divToId, position, imgDiv;
124124
for (var i = 0; i < jsonQuickStart.identifiers.length; i++) {
125-
if(jsonQuickStart.identifiers[i].visible && !jsonQuickStart.identifiers[i].visible())
125+
if((jsonQuickStart.identifiers[i].visible && !jsonQuickStart.identifiers[i].visible()) || !jsonQuickStart.identifiers[i].el)
126126
continue;
127127

128128
divToId = require("ext/guidedtour/guidedtour").getElementPosition(jsonQuickStart.identifiers[i].el);

0 commit comments

Comments
 (0)
Please sign in to comment.