-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b846606
commit 564c599
Showing
14 changed files
with
155 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<div class="modal"> | ||
<span class="modal-title"><i class="icon-location"></i> Where should we send this stuff?</span> | ||
<div class="modal-body"> | ||
<form class="shipping-address-form"> | ||
<input type="text" name="name" placeholder="Name" /> | ||
<input type="text" name="address" placeholder="Address" /> | ||
<input type="text" name="zip" placeholder="ZIP" /> | ||
<input type="text" name="city" placeholder="City" /> | ||
<input type="text" name="country" placeholder="Country" /> | ||
</form> | ||
</div> | ||
<div class="modal-actions"> | ||
<button class="modal-cancel modal-button button">Cancel</button> | ||
<button class="modal-confirm modal-button modal-delete button"> | ||
<span>Choose Shipping</span> <i class="icon-angle-right"></i> | ||
</button> | ||
<div class="clear"></div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<div class="modal"> | ||
<span class="modal-title"><i class="icon-gauge"></i> How fast do you want it?</span> | ||
<div class="modal-body"> | ||
<form class="shipping-options-form"> | ||
<table> | ||
<tbody> | ||
<% _.each(options, function (o) { | ||
var shipment = o.shipments[0]; | ||
console.log(shipment) | ||
%> | ||
<tr> | ||
<td> | ||
<input type="radio" name="option" value="<%= o.serviceLevelCode %>" /> | ||
</td> | ||
<td> | ||
<%= o.serviceLevelName %> (<%= shipment.carrier.description %>) | ||
</td> | ||
<td> | ||
Ships <%= new Date(shipment.expectedShipDate).format('ddd, mmm d, h:MMtt Z') %> | ||
<br /> | ||
Delivered by <%= new Date(shipment.expectedDeliveryMaxDate).format('ddd, mmm d, h:MMtt Z') %> | ||
</td> | ||
<td> | ||
<%= shipment.cost.amount %> (<%= shipment.cost.currency %>) | ||
</td> | ||
</tr> | ||
<% }); %> | ||
</tbody> | ||
</table> | ||
</form> | ||
</div> | ||
<div class="modal-actions"> | ||
<button class="modal-cancel modal-button button">Cancel</button> | ||
<button class="modal-confirm modal-button modal-delete button"> | ||
<span>Choose Billing</span> <i class="icon-angle-right"></i> | ||
</button> | ||
<div class="clear"></div> | ||
</div> | ||
</div> |