summaryrefslogtreecommitdiff
path: root/src/web/app/common
diff options
context:
space:
mode:
authorこぴなたみぽ <syuilotan@yahoo.co.jp>2018-02-13 16:00:08 +0900
committerこぴなたみぽ <syuilotan@yahoo.co.jp>2018-02-13 16:00:08 +0900
commit0fbc228c35a5aef8f6e8fb008e684c5b767ce94d (patch)
tree6317f6220cfdd527060a9555e9fa6ac350db81c3 /src/web/app/common
parentwip (diff)
downloadmisskey-0fbc228c35a5aef8f6e8fb008e684c5b767ce94d.tar.gz
misskey-0fbc228c35a5aef8f6e8fb008e684c5b767ce94d.tar.bz2
misskey-0fbc228c35a5aef8f6e8fb008e684c5b767ce94d.zip
wip
Diffstat (limited to 'src/web/app/common')
-rw-r--r--src/web/app/common/-tags/number.tag16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/web/app/common/-tags/number.tag b/src/web/app/common/-tags/number.tag
deleted file mode 100644
index 9cbbacd2c7..0000000000
--- a/src/web/app/common/-tags/number.tag
+++ /dev/null
@@ -1,16 +0,0 @@
-<mk-number>
- <style lang="stylus" scoped>
- :scope
- display inline
- </style>
- <script lang="typescript">
- this.on('mount', () => {
- let value = this.opts.value;
- const max = this.opts.max;
-
- if (max != null && value > max) value = max;
-
- this.root.innerHTML = value.toLocaleString();
- });
- </script>
-</mk-number>