From e5c72c986c540fe0e9366d9615806c1d0f5cf6a4 Mon Sep 17 00:00:00 2001 From: Steve Mayes Date: Sat, 27 Feb 2016 20:20:27 -0500 Subject: [PATCH] Fix for the onhintclick test case --- intro.js/intro.js-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intro.js/intro.js-tests.ts b/intro.js/intro.js-tests.ts index 46efe8844..a3e5c0e4d 100644 --- a/intro.js/intro.js-tests.ts +++ b/intro.js/intro.js-tests.ts @@ -63,7 +63,7 @@ intro.start() alert('Hints added'); }) .onhintclick(function (hintElement, item, stepId) { - element.getAttribute('class'); + hintElement.getAttribute('class'); }) .onhintclose(function (stepId) { alert('Hint close for Step ID ' + stepId);