mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-26 18:10:27 +00:00
Merge branch 'parameterised-transclusions' into geospatial-plugin
This commit is contained in:
commit
f6b3310da5
@ -2,4 +2,4 @@
|
|||||||
|
|
||||||
# Remove any output files
|
# Remove any output files
|
||||||
|
|
||||||
find . -regex "^./editions/[a-z0-9\.-]*/output/.*" -delete
|
find . -regex "^./editions/.*/output/.*" -delete
|
||||||
|
@ -162,13 +162,13 @@ FramedEngine.prototype.fixHeight = function() {
|
|||||||
if(this.widget.editAutoHeight) {
|
if(this.widget.editAutoHeight) {
|
||||||
if(this.domNode && !this.domNode.isTiddlyWikiFakeDom) {
|
if(this.domNode && !this.domNode.isTiddlyWikiFakeDom) {
|
||||||
var newHeight = $tw.utils.resizeTextAreaToFit(this.domNode,this.widget.editMinHeight);
|
var newHeight = $tw.utils.resizeTextAreaToFit(this.domNode,this.widget.editMinHeight);
|
||||||
this.iframeNode.style.height = (newHeight + 14) + "px"; // +14 for the border on the textarea
|
this.iframeNode.style.height = newHeight + "px";
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
var fixedHeight = parseInt(this.widget.wiki.getTiddlerText(HEIGHT_VALUE_TITLE,"400px"),10);
|
var fixedHeight = parseInt(this.widget.wiki.getTiddlerText(HEIGHT_VALUE_TITLE,"400px"),10);
|
||||||
fixedHeight = Math.max(fixedHeight,20);
|
fixedHeight = Math.max(fixedHeight,20);
|
||||||
this.domNode.style.height = fixedHeight + "px";
|
this.domNode.style.height = fixedHeight + "px";
|
||||||
this.iframeNode.style.height = (fixedHeight + 14) + "px";
|
this.iframeNode.style.height = fixedHeight + "px";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -61,6 +61,9 @@ TiddlyWiki lets you choose where to keep your data, guaranteeing that in the dec
|
|||||||
<a href="https://www.reddit.com/r/TiddlyWiki5/" class="tc-btn-big-green" style="border-radius:4px;background-color:#FF4500;" target="_blank" rel="noopener noreferrer">
|
<a href="https://www.reddit.com/r/TiddlyWiki5/" class="tc-btn-big-green" style="border-radius:4px;background-color:#FF4500;" target="_blank" rel="noopener noreferrer">
|
||||||
{{Reddit Logo}} Reddit
|
{{Reddit Logo}} Reddit
|
||||||
</a>
|
</a>
|
||||||
|
<a href="https://opencollective.com/tiddlywiki" class="tc-btn-big-green" style="border-radius:4px;background-color:#0c2c66;" target="_blank" rel="noopener noreferrer">
|
||||||
|
{{Open Collective Logo}} Open Collective
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
!! ''Testimonials & Reviews''
|
!! ''Testimonials & Reviews''
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
title: Open Collective Logo
|
||||||
|
tags: picture
|
||||||
|
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2" viewBox="0 0 28 28"><path d="M25.509 6.026A13.934 13.934 0 0 1 28 14c0 2.963-.92 5.71-2.491 7.974l-3.626-3.627A8.96 8.96 0 0 0 23 14a8.964 8.964 0 0 0-1.117-4.347l3.626-3.627Z"/><path d="m21.974 2.49-3.627 3.628a9 9 0 1 0 0 15.765l3.627 3.626A13.934 13.934 0 0 1 14 27.999C6.268 28 0 21.733 0 14 0 6.269 6.268 0 14 0c2.963 0 5.711.922 7.974 2.492Z"/></svg>
|
Loading…
Reference in New Issue
Block a user