CC-4475: Register form button doesn't have any styling
-fixed
This commit is contained in:
parent
e676cf856f
commit
09b117999e
|
@ -15,9 +15,10 @@ $(document).ready(function(){
|
||||||
close: doNotShowPopup,
|
close: doNotShowPopup,
|
||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
id: "remind_me",
|
id: "remind_me",
|
||||||
text: "Remind me in 1 week",
|
text: "Remind me in 1 week",
|
||||||
click: function() {
|
"class": "btn",
|
||||||
|
click: function() {
|
||||||
var url = '/Usersettings/remindme';
|
var url = '/Usersettings/remindme';
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: url,
|
url: url,
|
||||||
|
@ -29,6 +30,7 @@ $(document).ready(function(){
|
||||||
{
|
{
|
||||||
id: "remind_never",
|
id: "remind_never",
|
||||||
text: "Remind me never",
|
text: "Remind me never",
|
||||||
|
"class": "btn",
|
||||||
click: function() {
|
click: function() {
|
||||||
var url ='/Usersettings/remindme-never';
|
var url ='/Usersettings/remindme-never';
|
||||||
$.ajax({
|
$.ajax({
|
||||||
|
@ -41,6 +43,7 @@ $(document).ready(function(){
|
||||||
{
|
{
|
||||||
id: "help_airtime",
|
id: "help_airtime",
|
||||||
text: "Yes, help Airtime",
|
text: "Yes, help Airtime",
|
||||||
|
"class": "btn",
|
||||||
click: function() {
|
click: function() {
|
||||||
$("#register-form").submit();
|
$("#register-form").submit();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue