UI improvements for mobile browsers
This commit is contained in:
parent
605072cfbf
commit
cd0931c951
@ -3,6 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<title>CryptPad</title>
|
<title>CryptPad</title>
|
||||||
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
|
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="icon" type="image/png"
|
<link rel="icon" type="image/png"
|
||||||
href="/customize/main-favicon.png"
|
href="/customize/main-favicon.png"
|
||||||
data-main-favicon="/customize/main-favicon.png"
|
data-main-favicon="/customize/main-favicon.png"
|
||||||
|
|||||||
@ -2,6 +2,7 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
|
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="stylesheet" href="/bower_components/components-font-awesome/css/font-awesome.min.css">
|
<link rel="stylesheet" href="/bower_components/components-font-awesome/css/font-awesome.min.css">
|
||||||
<script src="/bower_components/jquery/dist/jquery.min.js"></script>
|
<script src="/bower_components/jquery/dist/jquery.min.js"></script>
|
||||||
<script src="/bower_components/ckeditor/ckeditor.js"></script>
|
<script src="/bower_components/ckeditor/ckeditor.js"></script>
|
||||||
|
|||||||
@ -763,9 +763,13 @@ define([
|
|||||||
|
|
||||||
var first = function () {
|
var first = function () {
|
||||||
Ckeditor = ifrw.CKEDITOR;
|
Ckeditor = ifrw.CKEDITOR;
|
||||||
|
|
||||||
if (Ckeditor) {
|
if (Ckeditor) {
|
||||||
//andThen(Ckeditor);
|
//andThen(Ckeditor);
|
||||||
|
// mobile configuration
|
||||||
|
Ckeditor.config.toolbarCanCollapse = true;
|
||||||
|
if (screen.height < 800) {
|
||||||
|
Ckeditor.config.toolbarStartupExpanded = false;
|
||||||
|
}
|
||||||
second(Ckeditor);
|
second(Ckeditor);
|
||||||
} else {
|
} else {
|
||||||
console.log("Ckeditor was not defined. Trying again in %sms",interval);
|
console.log("Ckeditor was not defined. Trying again in %sms",interval);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user