Skip to content
This repository was archived by the owner on Aug 1, 2019. It is now read-only.

Latest commit

 

History

History
39 lines (26 loc) · 686 Bytes

File metadata and controls

39 lines (26 loc) · 686 Bytes

angular-walkme

An AngularJS module for interfacing with the WalkMe snippet API

Table of Contents

Background

Install

npm install @buildium/angular-walkme --save

Usage

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);
})

License

MIT © Buildium