Browse Source

Forward url on add bike/ don't display value if nil

denney-fix-saving-dates
Jason Denney 10 years ago
parent
commit
7b11da9583
  1. 2
      app/assets/javascripts/bikes.js
  2. 5
      app/views/bikes/show.html.haml

2
app/assets/javascripts/bikes.js

@ -20,7 +20,7 @@ $("#add_bike_submit").click(function(){
data: json_data,
dataType: "json",
success: function(data, status, xhr){
//window.location = "";
window.location = "/bikes/"+ data.bike.id;
},
error: function(data, status ){
displayFormErrors(data.responseJSON);

5
app/views/bikes/show.html.haml

@ -12,8 +12,9 @@
%dd #{@bike.seat_tube_height}
%dt Purpose
%dd #{@bike.bike_purpose}
%dt Value
%dd #{@bike.value}
- if !@bike.value.nil?
%dt Value
%dd #{@bike.value}
- if !@bike.color.nil?
%dt Color
%dd{ style: "width: 50px; background-color: ##{@bike.color}; border: black; border-width: 1px; border-style: solid;"} #{@bike.color}

Loading…
Cancel
Save