aboutsummaryrefslogtreecommitdiffstats
path: root/syte/static/js/components/base.js
diff options
context:
space:
mode:
Diffstat (limited to 'syte/static/js/components/base.js')
-rw-r--r--syte/static/js/components/base.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/syte/static/js/components/base.js b/syte/static/js/components/base.js
new file mode 100644
index 0000000..0d60276
--- /dev/null
+++ b/syte/static/js/components/base.js
@@ -0,0 +1,32 @@
+//Global configs and functions shared between js
+
+function numberWithCommas(x) {
+ return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
+}
+
+require.config({
+ baseUrl: "/static/",
+ paths: {
+ "text": "js/libs/text",
+ "json": "js/libs/json"
+ },
+ waitSeconds: 15
+});
+
+var spin_opts = {
+ lines: 9,
+ length: 5,
+ width: 2,
+ radius: 4,
+ rotate: 9,
+ color: '#4c4c4c',
+ speed: 1.5,
+ trail: 40,
+ shadow: false,
+ hwaccel: false,
+ className: 'spinner',
+ zIndex: 2e9
+};
+
+
+