Skip to content

Commit

Permalink
Merge pull request #360 from rehandalal/fix-safari-issue
Browse files Browse the repository at this point in the history
Fix issue in Safari and add better mobile support
  • Loading branch information
mostlygeek authored Feb 25, 2020
2 parents 889645a + 350f18e commit e49f197
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions poucave/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Delivery System Status</title>
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="css/tabler.min.css" />
Expand Down
6 changes: 2 additions & 4 deletions poucave/html/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,10 +260,9 @@ class Overview extends Component {
}

class SystemDiagram extends Component {
svgRef = {};

constructor() {
super();
this.svgRef = {};
this.handleObjectLoad = this.handleObjectLoad.bind(this);
this.handleObjectError = this.handleObjectError.bind(this);
this.state = {
Expand Down Expand Up @@ -413,10 +412,9 @@ class Project extends Component {
}

class Check extends Component {
cardRef = {};

constructor() {
super();
this.cardRef = {};
this.state = {
focused: false,
};
Expand Down

0 comments on commit e49f197

Please sign in to comment.