An AngularJS module for interfacing with the WalkMe snippet API
npm install @buildium/angular-walkme --save
angular.module('MyApp', ['buildium.angular-walkme'])
.config(function(AngularWalkMeProvider) {
AngularWalkMeProvider.setEditorSnippetUrl('https://snippet/url')
})
.run(function(AngularWalkMe) {
AngularWalkMe.addVariables(walkMeVariables);
AngularWalkMe.runSnippet();
AngularWalkMe.onWalkthroughCompleted(onWalkthroughCompleted);
})
MIT © Buildium