CC-4475: Register form button doesn't have any styling

-fixed
This commit is contained in:
denise 2012-09-18 15:28:38 -04:00
parent e676cf856f
commit 09b117999e
1 changed files with 6 additions and 3 deletions

View File

@ -15,9 +15,10 @@ $(document).ready(function(){
close: doNotShowPopup,
buttons: [
{
id: "remind_me",
text: "Remind me in 1 week",
click: function() {
id: "remind_me",
text: "Remind me in 1 week",
"class": "btn",
click: function() {
var url = '/Usersettings/remindme';
$.ajax({
url: url,
@ -29,6 +30,7 @@ $(document).ready(function(){
{
id: "remind_never",
text: "Remind me never",
"class": "btn",
click: function() {
var url ='/Usersettings/remindme-never';
$.ajax({
@ -41,6 +43,7 @@ $(document).ready(function(){
{
id: "help_airtime",
text: "Yes, help Airtime",
"class": "btn",
click: function() {
$("#register-form").submit();
}