summaryrefslogtreecommitdiff
path: root/scripts/consts.js
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2014-10-26 22:25:29 +0200
committerAlon Levy <alon@pobox.com>2014-10-26 22:25:33 +0200
commitb3f96efb33d7fc99500147d336ead1536b6b24e9 (patch)
treedea2c8bd7fe345a50b048d792a2a3de4430a7b9a /scripts/consts.js
parenta31a32e4ea03771986192c536141c9f276a41d08 (diff)
introduce signal, start using in history; use consts for signal name
introduces two new modules: scripts/consts.js scripts/signal.js signal is a thin wrapper for jquery('window').on and jquery('window').trigger, which seems like an adaquete signal library - there are faster things around, but why introduce another dependency.
Diffstat (limited to 'scripts/consts.js')
-rw-r--r--scripts/consts.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/consts.js b/scripts/consts.js
new file mode 100644
index 00000000..927a30d3
--- /dev/null
+++ b/scripts/consts.js
@@ -0,0 +1,5 @@
+define('consts', function() {
+ return {
+ RECORD_LINKS: 'record_links',
+ };
+});