git.schokokeks.org
Repositories
Help
Report an Issue
fs-words.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
6e9c872
Branches
Tags
develop-client_server
master
typescript
fs-words.git
server
lib
node_modules
gauge
base-theme.js
[add] server:lib:node_modules
Christian Fraß
commited
6e9c872
at 2021-03-08 23:52:07
base-theme.js
Blame
History
Raw
'use strict' var spin = require('./spin.js') var progressBar = require('./progress-bar.js') module.exports = { activityIndicator: function (values, theme, width) { if (values.spun == null) return return spin(theme, values.spun) }, progressbar: function (values, theme, width) { if (values.completed == null) return return progressBar(theme, width, values.completed) } }