angular-prompt icon indicating copy to clipboard operation
angular-prompt copied to clipboard

Angular service to easily display input prompts and confirmation modals.

Results 26 angular-prompt issues
Sort by recently updated
recently updated
newest added

If in angular 1.3 you disable debug info like so: ``` $compileProvider.debugInfoEnabled(false); ``` Then this breaks this plugin when submitting a prompt with a modal. This PR fixes tie behaviour.

replace `x` with `×` here https://github.com/cgross/angular-prompt/blob/6de8bdfdaa8862488f6deb53c5e5233ac6e77129/dist/angular-prompt.js#L109 Note: this is what bootstrap does http://getbootstrap.com/javascript/#static-example I can submit a pull request for the small change.

If option 'input' was set to false, there were no focused element. This pull request adds focus on primary button (if exist and input==false).

If not using default interpolation, template will not work. Added start and end symbols as variables from interpolate service provider.

I use different start and end symbols in my angular app: ``` config(function($interpolateProvider){ $interpolateProvider.startSymbol('{[{').endSymbol('}]}'); }) ``` Unfortunately, that isn't honored by angular-prompt. It would be helpful to have the start...

Hi sorry for the stupid question, would like to submit a pull request. How can I set everything up locally and compile a new version? Are there any tests I...