Footer funzionante e fissato in basso
[YouAndWeb_TwoToc] / client / app / contact / contact.js
diff --git a/client/app/contact/contact.js b/client/app/contact/contact.js
new file mode 100755 (executable)
index 0000000..c765495
--- /dev/null
@@ -0,0 +1,15 @@
+'use strict';
+
+angular.module('dashboardApp')
+  .config(function($stateProvider) {
+    $stateProvider
+    .state('contact', {
+        url: '/contact',
+        templateUrl: 'app/contact/contact.html',
+        controller: 'ContactCtrl',
+        params: {
+          lng: null,
+          lat: null
+        }
+      })
+  });