diff --git a/app/index.html b/app/index.html
index 9e9bcd5..d0cc720 100644
--- a/app/index.html
+++ b/app/index.html
@@ -109,7 +109,7 @@
-
-
+
@@ -257,6 +257,7 @@
+
diff --git a/app/scripts/directives/placeholder.js b/app/scripts/directives/placeholder.js
new file mode 100644
index 0000000..d890532
--- /dev/null
+++ b/app/scripts/directives/placeholder.js
@@ -0,0 +1,17 @@
+(function () {
+ 'use strict';
+
+ angular.module("ariaNg").directive('ngPlaceholder', function () {
+ return {
+ restrict: 'A',
+ scope: {
+ placeholder: '=ngPlaceholder'
+ },
+ link: function (scope, elem, attr) {
+ scope.$watch('placeholder', function () {
+ elem[0].placeholder = scope.placeholder;
+ });
+ }
+ }
+ });
+})();