From c8540b84f0304b9413d2c9b48c83e3b1283371a1 Mon Sep 17 00:00:00 2001 From: cameronwp Date: Thu, 8 Jan 2015 16:23:28 -0800 Subject: [PATCH] Reverted helper.js click handler for the internationalize button so that it no longer takes a parameter --- js/helper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/helper.js b/js/helper.js index 2f72380286..dd8ea8d2fd 100644 --- a/js/helper.js +++ b/js/helper.js @@ -64,7 +64,7 @@ The International Name challenge in Lesson 2 where you'll create a function that */ $(document).ready(function() { $('button').click(function() { - var iName = inName(name) || function(){}; + var iName = inName() || function(){}; $('#name').html(iName); }); })