mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-26 10:00:34 +00:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
be0f82c280
@ -24,7 +24,7 @@ exports.startup = function() {
|
||||
var refreshHandler,
|
||||
title = event.param || event.tiddlerTitle,
|
||||
paramObject = event.paramObject || {},
|
||||
template = paramObject.template || "$:/core/ui/ViewTemplate/body",
|
||||
template = paramObject.template || "$:/core/templates/single.tiddler.window",
|
||||
width = paramObject.width || "700",
|
||||
height = paramObject.height || "600";
|
||||
// Open the window
|
||||
@ -35,7 +35,7 @@ exports.startup = function() {
|
||||
return;
|
||||
}
|
||||
// Initialise the document
|
||||
srcDocument.write("<html><head></head><body class='tc-body'></body></html>");
|
||||
srcDocument.write("<html><head></head><body class='tc-body tc-single-tiddler-window'></body></html>");
|
||||
srcDocument.close();
|
||||
srcDocument.title = title;
|
||||
srcWindow.addEventListener("beforeunload",function(event) {
|
||||
|
32
core/templates/single.tiddler.window.tid
Normal file
32
core/templates/single.tiddler.window.tid
Normal file
@ -0,0 +1,32 @@
|
||||
title: $:/core/templates/single.tiddler.window
|
||||
|
||||
<$set name="themeTitle" value={{$:/view}}>
|
||||
|
||||
<$set name="tempCurrentTiddler" value=<<currentTiddler>>>
|
||||
|
||||
<$set name="currentTiddler" value={{$:/language}}>
|
||||
|
||||
<$set name="languageTitle" value={{!!name}}>
|
||||
|
||||
<$set name="currentTiddler" value=<<tempCurrentTiddler>>>
|
||||
|
||||
<$importvariables filter="[[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]">
|
||||
|
||||
<$navigator story="$:/StoryList" history="$:/HistoryList">
|
||||
|
||||
<$transclude mode="block"/>
|
||||
|
||||
</$navigator>
|
||||
|
||||
</$importvariables>
|
||||
|
||||
</$set>
|
||||
|
||||
</$set>
|
||||
|
||||
</$set>
|
||||
|
||||
</$set>
|
||||
|
||||
</$set>
|
||||
|
@ -66,6 +66,10 @@ body.tc-body {
|
||||
<<custom-background-datauri>>
|
||||
}
|
||||
|
||||
body.tc-body.tc-single-tiddler-window {
|
||||
margin: 1em;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
line-height: 1.2;
|
||||
font-weight: 300;
|
||||
|
Loading…
Reference in New Issue
Block a user