mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-01-16 20:22:52 +00:00
ea8c795d01
Just type `$tw.slowmo()` in the developer console to engage slowmo mode.
28 lines
618 B
JavaScript
28 lines
618 B
JavaScript
/*\
|
|
title: $:/core/modules/hacks.js
|
|
type: application/javascript
|
|
module-type: global
|
|
|
|
These functions are designed to be invoked in the browser developer tools or the node.js REPL.
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
/*
|
|
Switch slowmotion animation mode on or off
|
|
*/
|
|
exports.slowmo = function(status) {
|
|
if(status === undefined || status) {
|
|
$tw.config.preferences.animationDuration = 4000;
|
|
} else {
|
|
$tw.config.preferences.animationDuration = 400;
|
|
}
|
|
$tw.config.preferences.animationDurationMs = $tw.config.preferences.animationDuration + "ms";
|
|
};
|
|
|
|
})();
|