mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-04-06 02:37:14 +00:00
fix whitespace
This commit is contained in:
parent
13ceaf3b93
commit
279f2d7bd3
@ -7,8 +7,6 @@ Text editor operation to excise the selection to a new tiddler
|
||||
|
||||
\*/
|
||||
|
||||
|
||||
|
||||
"use strict";
|
||||
|
||||
function isMarkdown(mediaType) {
|
||||
|
@ -19,7 +19,7 @@ exports["wrap-lines"] = function(event,operation) {
|
||||
operation.cutStart = operation.selStart - (prefix.length + 1);
|
||||
operation.cutEnd = operation.selEnd + suffix.length + 1;
|
||||
// Also cut the following newline (if there is any)
|
||||
if(operation.text[operation.cutEnd] === "\n") {
|
||||
if (operation.text[operation.cutEnd] === "\n") {
|
||||
operation.cutEnd++;
|
||||
}
|
||||
// Replace with selection
|
||||
|
@ -12,7 +12,7 @@ Export our filter function
|
||||
exports.timestamp = function(source,operand,options) {
|
||||
var results = [];
|
||||
source(function(tiddler,title) {
|
||||
if(title.match(/^-?\d+$/)) {
|
||||
if (title.match(/^-?\d+$/)) {
|
||||
var value = new Date(Number(title));
|
||||
results.push($tw.utils.formatDateString(value,operand || "[UTC]YYYY0MM0DD0hh0mm0ss0XXX"));
|
||||
}
|
||||
|
@ -15,7 +15,7 @@ Export our filter function
|
||||
exports.removesuffix = function(source,operator,options) {
|
||||
var results = [],
|
||||
suffixes = (operator.suffixes || [])[0] || [];
|
||||
if(!operator.operand) {
|
||||
if (!operator.operand) {
|
||||
source(function(tiddler,title) {
|
||||
results.push(title);
|
||||
});
|
||||
|
@ -15,7 +15,7 @@ Export our filter function
|
||||
exports.suffix = function(source,operator,options) {
|
||||
var results = [],
|
||||
suffixes = (operator.suffixes || [])[0] || [];
|
||||
if(!operator.operand) {
|
||||
if (!operator.operand) {
|
||||
source(function(tiddler,title) {
|
||||
results.push(title);
|
||||
});
|
||||
|
@ -71,7 +71,7 @@ ButtonWidget.prototype.render = function(parent,nextSibling) {
|
||||
if(this["aria-label"]) {
|
||||
domNode.setAttribute("aria-label",this["aria-label"]);
|
||||
}
|
||||
if(this.role) {
|
||||
if (this.role) {
|
||||
domNode.setAttribute("role", this.role);
|
||||
}
|
||||
if(this.popup || this.popupTitle) {
|
||||
|
@ -6,7 +6,7 @@ tags: $:/tags/test-spec
|
||||
Tests the backtranscludes mechanism.
|
||||
|
||||
\*/
|
||||
(function(){"use strict";
|
||||
"use strict";
|
||||
|
||||
describe('Backtranscludes and transclude filter tests', function() {
|
||||
describe('a tiddler with no transcludes to it', function() {
|
||||
@ -250,5 +250,3 @@ describe('Backtranscludes and transclude filter tests', function() {
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
})();
|
||||
|
@ -5,7 +5,9 @@ tags: [[$:/tags/test-spec]]
|
||||
|
||||
Tests the tagging mechanism.
|
||||
|
||||
\*/"use strict";
|
||||
\*/
|
||||
|
||||
"use strict";
|
||||
|
||||
describe("Tags Operator tests", function() {
|
||||
|
||||
|
@ -5,7 +5,9 @@ module-type: command
|
||||
|
||||
--aws command
|
||||
|
||||
\*/"use strict";
|
||||
\*/
|
||||
|
||||
"use strict";
|
||||
|
||||
var async,
|
||||
awsUtils;
|
||||
|
@ -5,7 +5,9 @@ module-type: filteroperator
|
||||
|
||||
Filter operator for applying encodeuricomponent() to each item, with the addition of converting single quotes to %27, as required by AWS
|
||||
|
||||
\*/"use strict";
|
||||
\*/
|
||||
|
||||
"use strict";
|
||||
|
||||
/*
|
||||
Export our filter functions
|
||||
|
@ -5,7 +5,9 @@ module-type: startup
|
||||
|
||||
AWS initialisation
|
||||
|
||||
\*/"use strict";
|
||||
\*/
|
||||
|
||||
"use strict";
|
||||
|
||||
// Export name and synchronous status
|
||||
exports.name = "aws-init";
|
||||
|
@ -5,7 +5,9 @@ module-type: library
|
||||
|
||||
AWS utility functions
|
||||
|
||||
\*/"use strict";
|
||||
\*/
|
||||
|
||||
"use strict";
|
||||
|
||||
/*
|
||||
Get a file from an S3 bucket
|
||||
|
Loading…
x
Reference in New Issue
Block a user