Redraw the preview in the code app when the tab gets the focus
This commit is contained in:
parent
c127f0a5f6
commit
e6379dacd8
@ -8,6 +8,7 @@ define([
|
||||
'/common/common-util.js',
|
||||
'/common/common-hash.js',
|
||||
'/common/modes.js',
|
||||
'/common/visible.js',
|
||||
'/customize/messages.js',
|
||||
'cm/lib/codemirror',
|
||||
|
||||
@ -49,6 +50,7 @@ define([
|
||||
Util,
|
||||
Hash,
|
||||
Modes,
|
||||
Visible,
|
||||
Messages,
|
||||
CMeditor)
|
||||
{
|
||||
@ -222,6 +224,12 @@ define([
|
||||
}
|
||||
});
|
||||
|
||||
Visible.onChange(function (visible) {
|
||||
if (visible) {
|
||||
drawPreview();
|
||||
}
|
||||
});
|
||||
|
||||
return {
|
||||
forceDraw: forceDrawPreview,
|
||||
draw: drawPreview,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user