benmarch / angular-bootstrap-tour

AngularJS wrapper around Bootstrap Tour
64 stars 27 forks source link

removal of depreciated angular promise method #48

Closed ansy closed 6 years ago

benmarch commented 6 years ago

Hey @ansy, this won't work as written: .then() resolves with a HttpResponse object whereas .success() resolves with the payload. This will have to be:

.then(function (response) {
    var template = response.data;
    ....
})

I highly recommend replacing this library with Angular UI Tour as I no longer maintain this library.