From fe9c877b9309fbd092256a02b2b05340d45f16aa Mon Sep 17 00:00:00 2001 From: Steve Mayes Date: Sat, 27 Feb 2016 15:40:23 -0500 Subject: [PATCH] Updated the onchange test's parameter Updated the onchange test's parameter so it matches the latest definition. --- intro.js/intro.js-tests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/intro.js/intro.js-tests.ts b/intro.js/intro.js-tests.ts index 2f342996e..7dc2afd2a 100644 --- a/intro.js/intro.js-tests.ts +++ b/intro.js/intro.js-tests.ts @@ -50,8 +50,8 @@ intro.start() .onafterchange(function (element) { element.getAttribute('class'); }) - .onchange(function () { - alert('Changed'); + .onchange(function (element) { + element.getAttribute('class'); }) .oncomplete(function () { alert('Done');