diff options
author | Teddy Wing | 2017-02-03 21:30:17 +0100 |
---|---|---|
committer | Teddy Wing | 2017-02-03 21:30:17 +0100 |
commit | 8dabdf87e992755d2a2bddb99a0c464917fd42d7 (patch) | |
tree | 042c129e8739846991d7fa870c5c8d6f5b9d558e /app | |
parent | 6592859bc9fb7531b8831bbba3535a7f333a14bd (diff) | |
download | Angular-tutorial-8dabdf87e992755d2a2bddb99a0c464917fd42d7.tar.bz2 |
Create `n.Notes` app module
This will be the base module for our app.
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/javascripts/app.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/assets/javascripts/app.js b/app/assets/javascripts/app.js new file mode 100644 index 0000000..c7aacc8 --- /dev/null +++ b/app/assets/javascripts/app.js @@ -0,0 +1,5 @@ +(function(angular) { + + angular.module('n.Notes', []); + +})(window.angular); |