js mode added favico as base64 data url

This commit is contained in:
fjenett
2011-06-11 14:23:34 +00:00
parent 681d257f7f
commit 8d01ae671f

View File

@@ -393,12 +393,16 @@ public class JavaScriptEditor extends Editor
handleSave();
if ( jsServer != null && jsServer.isRunning() )
handleStartServer();
else
statusEmpty();
} else {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
handleSave();
if ( jsServer != null && jsServer.isRunning() )
handleStartServer();
else
statusEmpty();
}
});
}