Skip to content

Commit

Permalink
styling
Browse files Browse the repository at this point in the history
  • Loading branch information
timoj committed Jul 23, 2018
1 parent 3a7df31 commit f9ee77d
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/css/parcelshop.css
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@

#parcelshopItem_logo {
float: left;
padding-left: 10px;
padding-left: 19px;
}

#parcelshopItem_text {
Expand Down
Binary file modified assets/images/parcelshop/DHL-locator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/parcelshop/DPD-locator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/parcelshop/GLS-locator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/parcelshop/POSTNL-locator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion assets/js/parcelshop.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ function getHours(days_hours) {
var opening_hours_list = "<div><table>";

days_hours.forEach(function (days) {
if (days.open_morning !== "00:00" && days.close_afternoon !== "00:00") {
if (days.open_morning !== "00:00" && days.open_morning !== null && days.close_afternoon !== "00:00" && days.close_afternoon !== null) {
opening_hours_list += "<tr><td>" + days.weekday + "</td><td>" + days.open_morning + " - " + days.close_afternoon + "</td></tr>";
}
});
Expand Down

0 comments on commit f9ee77d

Please sign in to comment.