diff --git a/client/www/app/moment/items/newItem.directive.js b/client/www/app/moment/items/newItem.directive.js
index b1cb2c9..15c2896 100644
--- a/client/www/app/moment/items/newItem.directive.js
+++ b/client/www/app/moment/items/newItem.directive.js
@@ -20,33 +20,13 @@
return directive;
function link(scope, element, attrs) {
- scope.typeSelected = null;
- scope.newItemButtonWasTapped = false;
+ scope.typeSelected = null; ;
scope.insertIntoMoment = insertIntoMoment;
scope.selectType = selectType;
scope.done = done;
- activate();
-
///////////////////////////////////////
- function activate() {
- $ionicGesture.on('tap', function (ev) {
- showThenHideButtons();
- }, element);
- }
-
- function showThenHideButtons() {
- scope.newItemButtonWasTapped = true;
-
- $timeout(function() {
- scope.newItemButtonWasTapped = false;
- scope.$apply();
- }, 3500);
-
- scope.$apply();
- }
-
function insertIntoMoment(type, url) {
scope.moment.content.push({
type: type,
diff --git a/client/www/app/moment/items/newText.directive.html b/client/www/app/moment/items/newText.directive.html
index 61614cc..2d95313 100644
--- a/client/www/app/moment/items/newText.directive.html
+++ b/client/www/app/moment/items/newText.directive.html
@@ -1,6 +1,16 @@
-
-
Write something memorable:
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/client/www/app/moment/items/showText.directive.html b/client/www/app/moment/items/showText.directive.html
index 4ba5820..fbce82c 100644
--- a/client/www/app/moment/items/showText.directive.html
+++ b/client/www/app/moment/items/showText.directive.html
@@ -1,3 +1,5 @@
-
- {{ item.url }}
-
\ No newline at end of file
+
diff --git a/client/www/app/moment/items/showText.directive.js b/client/www/app/moment/items/showText.directive.js
index 851f8e3..8551758 100644
--- a/client/www/app/moment/items/showText.directive.js
+++ b/client/www/app/moment/items/showText.directive.js
@@ -1,19 +1,19 @@
(function() {
angular
- .module('app.moment.items')
- .directive('showText', showText);
+ .module('app.moment.items')
+ .directive('showText', showText);
- /* @ngInject */
- function showText() {
+ /* @ngInject */
+ function showText() {
- var directive = {
- restrict: 'EA',
- templateUrl: 'app/moment/items/showText.directive.html',
- replace: true
- };
+ var directive = {
+ restrict: 'EA',
+ templateUrl: 'app/moment/items/showText.directive.html',
+ replace: true
+ };
- return directive;
- }
+ return directive;
+ }
})();
diff --git a/client/www/app/moment/moment.create.controller.js b/client/www/app/moment/moment.create.controller.js
index 56eb7a9..570432a 100644
--- a/client/www/app/moment/moment.create.controller.js
+++ b/client/www/app/moment/moment.create.controller.js
@@ -52,4 +52,4 @@
}
-})();
\ No newline at end of file
+})();
diff --git a/client/www/app/moment/moment.create.html b/client/www/app/moment/moment.create.html
index e555a9b..e52c974 100644
--- a/client/www/app/moment/moment.create.html
+++ b/client/www/app/moment/moment.create.html
@@ -2,9 +2,12 @@
-
-
-
+
+
+
+
@@ -19,8 +22,8 @@
-
-
+
+
diff --git a/client/www/app/moment/moment.render.controller.js b/client/www/app/moment/moment.render.controller.js
index 953e710..677615b 100644
--- a/client/www/app/moment/moment.render.controller.js
+++ b/client/www/app/moment/moment.render.controller.js
@@ -26,4 +26,4 @@
}
-})();
\ No newline at end of file
+})();
diff --git a/client/www/content/css/app.css b/client/www/content/css/app.css
new file mode 100644
index 0000000..c595bfa
--- /dev/null
+++ b/client/www/content/css/app.css
@@ -0,0 +1,11 @@
+.new-items .buttons {
+ display: block;
+ margin: 0 auto;
+}
+
+.new-items .buttons button {
+ display: inline-block;
+}
+.moment-title input[type='text'] {
+ text-align: center;
+}
\ No newline at end of file
diff --git a/client/www/content/sass/items.scss b/client/www/content/sass/items.scss
new file mode 100644
index 0000000..43c0019
--- /dev/null
+++ b/client/www/content/sass/items.scss
@@ -0,0 +1,10 @@
+.new-items {
+ .buttons {
+ display: block;
+ margin: 0 auto;
+
+ button {
+ display: inline-block;
+ }
+ }
+}
\ No newline at end of file
diff --git a/client/www/content/sass/moment.scss b/client/www/content/sass/moment.scss
new file mode 100644
index 0000000..d9d57b5
--- /dev/null
+++ b/client/www/content/sass/moment.scss
@@ -0,0 +1,5 @@
+.moment-title {
+ input[type='text'] {
+ text-align: center;
+ }
+}
\ No newline at end of file
diff --git a/client/www/index.html b/client/www/index.html
index 48f4325..ba595fd 100644
--- a/client/www/index.html
+++ b/client/www/index.html
@@ -6,6 +6,7 @@
+