1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
(function(F/*the fossil object*/){
"use strict";
/**
Client-side implementation of the /pikchrshow app. Requires that
the fossil JS bootstrapping is complete and that these fossil JS
APIs have been installed: fossil.fetch, fossil.dom,
fossil.copybutton, fossil.popupwidget, fossil.storage
*/
const E = (s)=>document.querySelector(s),
D = F.dom,
P = F.page;
P.previewMode = 0 /*0==rendered SVG, 1==pikchr text markdown,
2==pikchr text fossil, 3==raw SVG. */
|
|
>
>
>
>
>
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
(function(F/*the fossil object*/){
"use strict";
/**
Client-side implementation of the /pikchrshowcs app. Requires that
the fossil JS bootstrapping is complete and that these fossil JS
APIs have been installed: fossil.fetch, fossil.dom,
fossil.copybutton, fossil.popupwidget, fossil.storage
Maintenance funkiness note: this file is for the legacy
/pikchrshowcs app, which was formerly named /pikchrshow. This
file and its replacement were not renamed because the replacement
impl would end up getting this file's name and cause confusion in
the file history. Whether that confusion would be less than this
file's name matching the _other_ /pikchrshow impl will cause more
or less confusion than that remains to be seen.
*/
const E = (s)=>document.querySelector(s),
D = F.dom,
P = F.page;
P.previewMode = 0 /*0==rendered SVG, 1==pikchr text markdown,
2==pikchr text fossil, 3==raw SVG. */
|