Skip to content

Commit f6b565e

Browse files
committed
bump to 0.3.5
1 parent f523ac0 commit f6b565e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-bootstrap-tour",
3-
"version": "0.3.4-rc.2",
3+
"version": "0.3.5",
44
"main": "dist/angular-bootstrap-tour.js",
55
"ignore": [
66
".editorconfig",

dist/angular-bootstrap-tour.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -287,9 +287,9 @@
287287

288288
return $http.get(templateUrl, {
289289
cache: $templateCache
290-
}).success(function (template) {
291-
if (template) {
292-
return compileTemplate(template, scope);
290+
}).then(function (response) {
291+
if (response.data) {
292+
return compileTemplate(response.data, scope);
293293
}
294294
return '';
295295
});

dist/angular-bootstrap-tour.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-bootstrap-tour",
3-
"version": "0.3.3-alpha.1",
3+
"version": "0.3.5",
44
"description": "angular-bootstrap-tour scaffolded with generator-microjs v0.1.2.",
55
"author": {
66
"name": "",

0 commit comments

Comments
 (0)