diff --git a/.gitignore b/.gitignore
index 4d6b8e2..92dd140 100644
--- a/.gitignore
+++ b/.gitignore
@@ -24,4 +24,6 @@ build/Release
# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git
node_modules
-temp
\ No newline at end of file
+temp
+
+bower_components
\ No newline at end of file
diff --git a/README.md b/README.md
index 9a998da..8928101 100644
--- a/README.md
+++ b/README.md
@@ -43,7 +43,8 @@ function MyCtrl($scope, prompt) {
input: true,
label: 'Name',
value: 'Current name',
- values: ['other','possible','names']
+ values: ['other','possible','names'],
+ placeholder: 'Placeholder'
}).then(function(name){
//the promise is resolved with the user input
});
@@ -84,6 +85,11 @@ function MyCtrl($scope, prompt) {
Default: `undefined`
A list of values available in a dropdown for the user to select as the input value.
+ - #### options.placeholder
+ Type: `String`
+ Default: `''`
+ The placeholder of the input if `input=true`.
+
- #### options.buttons
Type: `Array` of `Object` with properties `label`,`cancel`, `style`, and `primary`
Default: `[{ label:'OK', primary: true }, { label:'Cancel', cancel: true }]`
diff --git a/angular-prompt.html b/angular-prompt.html
index 6cd0ef9..a95e030 100644
--- a/angular-prompt.html
+++ b/angular-prompt.html
@@ -12,9 +12,9 @@