Skip to content

Commit 6de8bdf

Browse files
committed
fixes #1
1 parent 6992a51 commit 6de8bdf

12 files changed

+443
-232
lines changed

Gruntfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = function (grunt) {
2020
spawn: false
2121
},
2222
files: ['angular-prompt.html','angular-prompt.js','dist/**/*','demo/**/*'],
23-
tasks: ['jshint']
23+
tasks: ['build']
2424
}
2525
},
2626
jshint: {

angular-prompt.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ <h4 class="modal-title">{{options.title}}</h4>
1616
<div class="input-group" ng-if="options.values">
1717
<input id="cgPromptInput" type="text" class="form-control" placeholder="{{options.label}}" ng-model="input.name" required ng-change="changed=true" autofocus="autofocus"/>
1818

19-
<div class="input-group-btn">
20-
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button>
19+
<div class="input-group-btn" dropdown>
20+
<button type="button" class="btn btn-default dropdown-toggle" dropdown-toggle data-toggle="dropdown"><span class="caret"></span></button>
2121
<ul class="dropdown-menu pull-right">
2222
<li ng-repeat="value in options.values"><a href="" ng-click="input.name = value">{{value}}</a></li>
2323
</ul>

bower.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "angular-prompt",
33
"description": "Angular service to easily display prompt and confirmation modals.",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"main": [
66
"dist/angular-prompt.js"
77
],
88
"dependencies": {
99
"angular": "~1.2.16",
10-
"angular-bootstrap": "~0.11.0"
10+
"angular-bootstrap": "~0.12.0"
1111
},
1212
"ignore": [
1313
"**/.*",

bower_components/angular-bootstrap/.bower.json

+15-8
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,29 @@
33
"name": "https://github.com/angular-ui/bootstrap/graphs/contributors"
44
},
55
"name": "angular-bootstrap",
6-
"version": "0.11.0",
6+
"keywords": [
7+
"angular",
8+
"angular-ui",
9+
"bootstrap"
10+
],
11+
"license": "MIT",
12+
"ignore": [],
13+
"description": "Native AngularJS (Angular) directives for Bootstrap.",
14+
"version": "0.12.1",
715
"main": [
816
"./ui-bootstrap-tpls.js"
917
],
1018
"dependencies": {
11-
"angular": ">=1"
19+
"angular": ">=1 <1.3.0"
1220
},
1321
"homepage": "https://github.com/angular-ui/bootstrap-bower",
14-
"_release": "0.11.0",
22+
"_release": "0.12.1",
1523
"_resolution": {
1624
"type": "version",
17-
"tag": "0.11.0",
18-
"commit": "75b302f82c1a3b0647695a3dfeacab0a153ea8a0"
25+
"tag": "0.12.1",
26+
"commit": "ab14fbaaf3d592f8e76018f0666c5af6f68ebaa3"
1927
},
2028
"_source": "git://github.com/angular-ui/bootstrap-bower.git",
21-
"_target": "~0.11.0",
22-
"_originalSource": "angular-bootstrap",
23-
"_direct": true
29+
"_target": "~0.12.0",
30+
"_originalSource": "angular-bootstrap"
2431
}

bower_components/angular-bootstrap/bower.json

+10-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,17 @@
33
"name": "https://github.com/angular-ui/bootstrap/graphs/contributors"
44
},
55
"name": "angular-bootstrap",
6-
"version": "0.11.0",
6+
"keywords": [
7+
"angular",
8+
"angular-ui",
9+
"bootstrap"
10+
],
11+
"license": "MIT",
12+
"ignore": [],
13+
"description": "Native AngularJS (Angular) directives for Bootstrap.",
14+
"version": "0.12.1",
715
"main": ["./ui-bootstrap-tpls.js"],
816
"dependencies": {
9-
"angular": ">=1"
17+
"angular": ">=1 <1.3.0"
1018
}
1119
}

0 commit comments

Comments
 (0)