Hide editor toolbars by default when using a small screen
This commit is contained in:
@@ -852,6 +852,7 @@ define([
|
||||
var tbState = true;
|
||||
common.getAttribute(['general', 'markdown-help'], function (e, data) {
|
||||
if (e) { return void console.error(e); }
|
||||
if ($(window).height() < 800) { return; }
|
||||
if (data === true && $toolbarButton.length && tbState) {
|
||||
$toolbarButton.click();
|
||||
}
|
||||
@@ -868,6 +869,7 @@ define([
|
||||
}
|
||||
common.getAttribute(['general', 'markdown-help'], function (e, data) {
|
||||
if (e) { return void console.error(e); }
|
||||
if ($(window).height() < 800) { return; }
|
||||
if (data === true && $toolbarButton) {
|
||||
// Show the toolbar using the button to make sure the icon in the button is
|
||||
// correct (caret-down / caret-up)
|
||||
@@ -923,6 +925,7 @@ define([
|
||||
});
|
||||
|
||||
common.getAttribute(['hideHelp', type], function (err, val) {
|
||||
if ($(window).height() < 800) { return void toggleHelp(true); }
|
||||
if (val === true) { toggleHelp(true); }
|
||||
});
|
||||
|
||||
|
||||
@@ -116,7 +116,7 @@ define([
|
||||
} else {
|
||||
var errText = "[cursor.fixSelection] At least one of the " +
|
||||
"cursor nodes did not exist, could not fix selection";
|
||||
console.error(errText);
|
||||
//console.error(errText);
|
||||
return errText;
|
||||
}
|
||||
} catch (e) { console.error(e); }
|
||||
|
||||
@@ -400,7 +400,7 @@ define([
|
||||
});
|
||||
show();
|
||||
Common.getAttribute(['toolbar', 'userlist-drawer'], function (err, val) {
|
||||
if (val === false) { return void hide(); }
|
||||
if (val === false || $(window).height() < 800) { return void hide(); }
|
||||
show();
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user