From 971e28200227c530eab96489fb955e90ba93f113 Mon Sep 17 00:00:00 2001 From: Tim 'Thunderpuncher' Gunter Date: Fri, 16 Sep 2011 14:52:49 -0400 Subject: [PATCH] jQuery 1.6.2 fix. .prop instead of .attr Hey guys, its a public API. Y U CHANGE? --- applications/dashboard/views/authentication/choose.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/applications/dashboard/views/authentication/choose.php b/applications/dashboard/views/authentication/choose.php index d32d47f1173..8c2174ab18b 100644 --- a/applications/dashboard/views/authentication/choose.php +++ b/applications/dashboard/views/authentication/choose.php @@ -61,7 +61,8 @@ $('select#Form_Garden-dot-Authentication-dot-Chooser').bind('change',function(e){ var Chooser = $(e.target); var SliceElement = $('div.AuthenticationConfigure'); - var SliceObj = SliceElement.attr('Slice'); + var SliceObj = SliceElement.prop('Slice'); + console.log(SliceObj); var ChooserVal = Chooser.val(); var ChosenURL = (ConfigureList[ChooserVal]) ? ConfigureList[ChooserVal] : ((ConfigureList[ChooserVal] != 'undefined') ? '/dashboard/authentication/configure/'+ChooserVal : false);