Skip to content

Commit

Permalink
#220 fixed dropdown selects on mobiles + improved mobile scaling
Browse files Browse the repository at this point in the history
  • Loading branch information
bugy committed Jul 17, 2019
1 parent 1d1f734 commit 03a29b9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions web-src/admin.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 content="width=device-width, initial-scale=1" name="viewport">
<title>Admin panel</title>

<% for (var css in htmlWebpackPlugin.files.css) { %>
Expand Down
1 change: 1 addition & 0 deletions web-src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<head>
<title>Script server</title>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">

<% for (var css in htmlWebpackPlugin.files.css) { %>
<link href="<%= htmlWebpackPlugin.files.css[css] %>" rel="stylesheet">
Expand Down
1 change: 1 addition & 0 deletions web-src/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<head>
<title>Script server</title>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">

<% for (var css in htmlWebpackPlugin.files.css) { %>
<link href="<%= htmlWebpackPlugin.files.css[css] %>" rel="stylesheet">
Expand Down
1 change: 1 addition & 0 deletions web-src/webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ module.exports = merge(common, {
devServer: {
contentBase: path.resolve(__dirname + '/../web'),
hot: true,
host: '0.0.0.0',
proxy: [{
context: ['/scripts', '/executions', '/conf', '/auth', '/result_files', '/admin', '/login', '/logout'],
target: 'http://localhost:5000',
Expand Down

0 comments on commit 03a29b9

Please sign in to comment.