termites 1.0.25 → 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/server.js +3 -1
package/package.json
CHANGED
package/server.js
CHANGED
|
@@ -1229,7 +1229,9 @@ class TermitesServer {
|
|
|
1229
1229
|
setupMobileToolbar();
|
|
1230
1230
|
term = new Terminal({
|
|
1231
1231
|
theme: themes[currentTheme], fontFamily: currentFont,
|
|
1232
|
-
fontSize: currentFontSize, cursorBlink: true
|
|
1232
|
+
fontSize: currentFontSize, cursorBlink: true,
|
|
1233
|
+
scrollback: 1000,
|
|
1234
|
+
smoothScrollDuration: 100
|
|
1233
1235
|
});
|
|
1234
1236
|
fitAddon = new FitAddon.FitAddon();
|
|
1235
1237
|
term.loadAddon(fitAddon);
|