✌️
This commit is contained in:
parent
b4046da451
commit
f6f1eb1bca
3 changed files with 7 additions and 7 deletions
|
@ -12,23 +12,23 @@ module.exports = (me) ~>
|
||||||
Cropper: require \cropperjs
|
Cropper: require \cropperjs
|
||||||
|
|
||||||
riot.mixin \signout do
|
riot.mixin \signout do
|
||||||
signout: require './scripts/signout.js'
|
signout: require './scripts/signout'
|
||||||
|
|
||||||
riot.mixin \messaging-stream do
|
riot.mixin \messaging-stream do
|
||||||
MessagingStreamConnection: require './scripts/messaging-stream'
|
MessagingStreamConnection: require './scripts/messaging-stream'
|
||||||
|
|
||||||
riot.mixin \is-promise do
|
riot.mixin \is-promise do
|
||||||
is-promise: require './scripts/is-promise.ls'
|
is-promise: require './scripts/is-promise'
|
||||||
|
|
||||||
riot.mixin \get-post-summary do
|
riot.mixin \get-post-summary do
|
||||||
get-post-summary: require './scripts/get-post-summary.js'
|
get-post-summary: require './scripts/get-post-summary'
|
||||||
|
|
||||||
riot.mixin \date-stringify do
|
riot.mixin \date-stringify do
|
||||||
date-stringify: require './scripts/date-stringify.ls'
|
date-stringify: require './scripts/date-stringify'
|
||||||
|
|
||||||
riot.mixin \text do
|
riot.mixin \text do
|
||||||
analyze: require '../../../common/text/index.js'
|
analyze: require '../../../common/text/index'
|
||||||
compile: require './scripts/text-compiler.js'
|
compile: require './scripts/text-compiler'
|
||||||
|
|
||||||
riot.mixin \get-password-strength do
|
riot.mixin \get-password-strength do
|
||||||
get-password-strength: require 'syuilo-password-strength'
|
get-password-strength: require 'syuilo-password-strength'
|
||||||
|
|
1
src/web/app/common/scripts/is-promise.js
Normal file
1
src/web/app/common/scripts/is-promise.js
Normal file
|
@ -0,0 +1 @@
|
||||||
|
module.exports = x => typeof x.then == 'function';
|
|
@ -1 +0,0 @@
|
||||||
module.exports = (x) -> typeof x.then == \function
|
|
Loading…
Reference in a new issue