Closed ansy closed 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()
.success()
.then(function (response) { var template = response.data; .... })
I highly recommend replacing this library with Angular UI Tour as I no longer maintain this library.
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:I highly recommend replacing this library with Angular UI Tour as I no longer maintain this library.