Skip to content

Commit bb4fd9a

Browse files
committed
fixed #15, moved angular-route to dev dependencies, preparing for 0.3.4 release
1 parent c21429a commit bb4fd9a

File tree

3 files changed

+32
-32
lines changed

3 files changed

+32
-32
lines changed

bower.json

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
{
2-
"name": "angular-bootstrap-tour",
3-
"version": "0.3.3-alpha.1",
4-
"main": "dist/angular-bootstrap-tour.js",
5-
"ignore": [
6-
".editorconfig",
7-
".gitattributes",
8-
".gitignore",
9-
".jshintrc",
10-
".npmignore",
11-
".travis.yml",
12-
".umd",
13-
"gulpfile.js",
14-
"npm-shrinkwrap.json",
15-
"package.json"
16-
],
17-
"dependencies": {
18-
"angular": "~1.2.23",
19-
"bootstrap-tour": "~0.9.3",
20-
"jquery": "1.11.1",
21-
"bootstrap": "3.0.3",
22-
"angular-route": "1.2.16"
23-
},
24-
"devDependencies": {
25-
"html5shiv": "~3.7.2",
26-
"respond": "~1.4.2"
27-
},
28-
"resolutions": {
29-
"angular": "1.2.16"
30-
}
2+
"name": "angular-bootstrap-tour",
3+
"version": "0.3.4",
4+
"main": "dist/angular-bootstrap-tour.js",
5+
"ignore": [
6+
".editorconfig",
7+
".gitattributes",
8+
".gitignore",
9+
".jshintrc",
10+
".npmignore",
11+
".travis.yml",
12+
".umd",
13+
"gulpfile.js",
14+
"npm-shrinkwrap.json",
15+
"package.json"
16+
],
17+
"dependencies": {
18+
"angular": "~1.2.23",
19+
"bootstrap-tour": "~0.9.3",
20+
"jquery": "1.11.1",
21+
"bootstrap": "3.0.3"
22+
},
23+
"devDependencies": {
24+
"html5shiv": "~3.7.2",
25+
"respond": "~1.4.2",
26+
"angular-route": "1.2.16"
27+
},
28+
"resolutions": {
29+
"angular": "1.2.16"
30+
}
3131
}

demo/angular-bootstrap-tour.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
}(angular.module('bm.bsTour')));
4848

49-
/* global angular: false */
49+
/* global angular: false, Tour: false */
5050

5151
(function (app) {
5252
'use strict';
@@ -331,7 +331,7 @@
331331
} else if (attrs[helpers.getAttrName('templateUrl')]) {
332332
lookupTemplate(attrs[helpers.getAttrName('templateUrl')], scope).then(function (template) {
333333
if (template) {
334-
options.template = template;
334+
options.template = template.data;
335335
deferred.resolve(template);
336336
}
337337
});

dist/angular-bootstrap-tour.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
}(angular.module('bm.bsTour')));
4848

49-
/* global angular: false */
49+
/* global angular: false, Tour: false */
5050

5151
(function (app) {
5252
'use strict';

0 commit comments

Comments
 (0)