Change html to double quotes

This commit is contained in:
Joseph Cohen
2015-01-06 15:44:27 -06:00
parent 561a2207ae
commit fd8e4f7fa9
34 changed files with 297 additions and 291 deletions
+5 -2
View File
@@ -154,7 +154,7 @@ $(function() {
var url = '/setup/step' + current;
$.post(url, $form.serializeObject())
.done(function(response) {
goForward(current, next);
goToStep(current, next);
})
.fail(function(response) {
var errors = _.toArray(response.responseJSON.errors);
@@ -167,10 +167,13 @@ $(function() {
});
return false;
} else {
goToStep(current, next);
$btn.button('reset');
}
});
function goForward(current, next) {
function goToStep(current, next) {
// validation was ok. We can go on next step.
$('.block-' + current)
.removeClass('show')
+3
View File
@@ -51,6 +51,9 @@ body.dashboard {
.sub-header {
font-weight: 300;
text-transform: uppercase;
a {
text-transform: none;
}
}
.striped-list {