json-object-editor 0.10.222 → 0.10.224
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/CHANGELOG.md +2 -1
- package/capp/capp.css +2 -0
- package/package.json +1 -1
- package/pages/template.html +6 -2
- package/server/schemas/list.js +1 -1
package/CHANGELOG.md
CHANGED
package/capp/capp.css
CHANGED
|
@@ -429,6 +429,7 @@ capp-header capp-menu-panel{
|
|
|
429
429
|
}
|
|
430
430
|
capp-menu-panel > capp-menu-option{
|
|
431
431
|
padding:0 5px;
|
|
432
|
+
font-size: 16px;
|
|
432
433
|
}
|
|
433
434
|
capp-menu-option:after,
|
|
434
435
|
capp-menu-content:after,
|
|
@@ -468,6 +469,7 @@ capp-menu-option-bonus{
|
|
|
468
469
|
|
|
469
470
|
.capp-retro capp-menu-option.selected {
|
|
470
471
|
background-color: rgba(0,0,0,.1);
|
|
472
|
+
font-weight:bold;
|
|
471
473
|
}
|
|
472
474
|
|
|
473
475
|
html.no-touch capp-menu-option-bonus:hover{
|
package/package.json
CHANGED
package/pages/template.html
CHANGED
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
<meta name='viewport' content='initial-scale=1.0, user-scalable=no' >
|
|
7
7
|
<title> ${this.webconfig.name} > ${APPNAME} </title>
|
|
8
8
|
<script src="/JsonObjectEditor/js/libs/adapter-latest.js"></script>
|
|
9
|
-
|
|
9
|
+
<link rel="shortcut icon" href="/JsonObjectEditor/favicon.ico" type="image/x-icon">
|
|
10
10
|
<link rel="icon" href="/JsonObjectEditor/favicon.ico" type="image/x-icon">
|
|
11
11
|
<link rel="icon" sizes="192x192" href="/JsonObjectEditor/img/ico/android-icon-192x192.png">
|
|
12
|
-
<link rel="apple-touch-icon" sizes="144x144" href="/JsonObjectEditor/img/ico/android-icon-144x144.png" />
|
|
12
|
+
<link rel="apple-touch-icon" sizes="144x144" href="/JsonObjectEditor/img/ico/android-icon-144x144.png" />
|
|
13
13
|
|
|
14
14
|
<meta name="joe-notes" content="template.html template" >
|
|
15
15
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
@@ -18,6 +18,10 @@
|
|
|
18
18
|
<link rel="stylesheet" href="${JOEPATH}js/plugins/c3/c3.min.css"/>
|
|
19
19
|
<link rel="stylesheet" href="${JOEPATH}capp/capp.css"/>
|
|
20
20
|
<link href="/JsonObjectEditor/css/joe.css" rel="stylesheet" type="text/css"/>
|
|
21
|
+
<!--manifest.json-->
|
|
22
|
+
<link rel="manifest" href="/manifest.json">
|
|
23
|
+
|
|
24
|
+
<!--this.settings.joe_icons-->
|
|
21
25
|
${this.settings.joe_icons}
|
|
22
26
|
<!--<script src="${JOEPATH}_joeinclude.js"></script>-->
|
|
23
27
|
|
package/server/schemas/list.js
CHANGED
|
@@ -129,7 +129,7 @@ var schema = {
|
|
|
129
129
|
'status',
|
|
130
130
|
{name:'date',type:'date',native:true},
|
|
131
131
|
'reports',
|
|
132
|
-
{
|
|
132
|
+
{section_end:'activity'},
|
|
133
133
|
{section_start:'classification'},
|
|
134
134
|
{name:'list_type',display:"List Type",
|
|
135
135
|
autocomplete:{text:true},
|