diff options
author | fahimkhan | 2016-10-03 12:19:43 +0530 |
---|---|---|
committer | fahimkhan | 2016-10-03 12:19:43 +0530 |
commit | 912e009e7131f95077026b6045ee16909e2504f8 (patch) | |
tree | ca9e6ef91d9dc9cb5eee0a8387c3417580758dea | |
parent | f54f5d58a5818e82284ba38e5cb1af4b629ba456 (diff) | |
download | Online-NgSpice-Simulator-912e009e7131f95077026b6045ee16909e2504f8.tar.gz Online-NgSpice-Simulator-912e009e7131f95077026b6045ee16909e2504f8.tar.bz2 Online-NgSpice-Simulator-912e009e7131f95077026b6045ee16909e2504f8.zip |
Replace static with ngStatic
-rw-r--r-- | app.js | 2 | ||||
-rw-r--r-- | views/head.html | 12 |
2 files changed, 7 insertions, 7 deletions
@@ -23,7 +23,7 @@ app.engine('html',ejs.renderFile); //Set Static public folder -app.use('/static',express.static(path.join(__dirname,'public'))); +app.use('/ngStatic',express.static(path.join(__dirname,'public'))); //Set Port to run the app app.set('port',process.env.PORT||3000); diff --git a/views/head.html b/views/head.html index 0512ceb..6372566 100644 --- a/views/head.html +++ b/views/head.html @@ -2,21 +2,21 @@ <meta charset="UTF-8"> <title><%= title %></title> <!-- Bootstrap core CSS --> -<link rel="stylesheet" href="/static/css/bootstrap.min-3.3.6.css"> +<link rel="stylesheet" href="/ngStatic/css/bootstrap.min-3.3.6.css"> <!-- Custom styles for this template --> -<link href="/static/css/customstylesheet.css" rel="stylesheet"> +<link href="/ngStatic/css/customstylesheet.css" rel="stylesheet"> <!--Favicon--> -<link rel="shortcut icon" href="/static/images/favicon.ico" /> +<link rel="shortcut icon" href="/ngStatic/images/favicon.ico" /> <!-- <script src="/socket.io/socket.io.js"></script> --> <script src="https://cdn.socket.io/socket.io-1.4.5.js"></script> -<script src="/static/js/plotly-latest.min.js"></script> +<script src="/ngStatic/js/plotly-latest.min.js"></script> <!-- Bootstrap JQuery --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> -<script>window.jQuery || document.write('<script src="/static/js/jquery.min.js"><\/script>')</script> +<script>window.jQuery || document.write('<script src="/ngStatic/js/jquery.min.js"><\/script>')</script> <!-- Bootstrap core JS --> -<script src="/static/js/bootstrap.min-3.3.6.js"></script>
\ No newline at end of file +<script src="/ngStatic/js/bootstrap.min-3.3.6.js"></script>
\ No newline at end of file |