added instant delivery to gui / added RUC as abbr tag and details tag on mobile
This commit is contained in:
@@ -6,16 +6,15 @@ var FREE_SHIPPING_LIMIT = 50;
|
||||
|
||||
var Place = Backbone.Model.extend({
|
||||
|
||||
initialize: function(options) {
|
||||
options || (options = {});
|
||||
this.postalCode = options.postalCode;
|
||||
initialize: function(options) {
|
||||
options || (options = {});
|
||||
this.postalCode = options.postalCode;
|
||||
},
|
||||
|
||||
url: function() {
|
||||
var postalCode = this.postalCode || "00000";
|
||||
return Globals.ApiUrl + '/place/' + postalCode.trim();
|
||||
}
|
||||
|
||||
url: function() {
|
||||
var postalCode = this.postalCode || "00000";
|
||||
return Globals.ApiUrl + '/place/' + postalCode.trim();
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user