Skip to content

Commit

Permalink
Changed to port 80, use non-debug version of sencha
Browse files Browse the repository at this point in the history
  • Loading branch information
chicagoduane committed Apr 20, 2011
1 parent 3825ecc commit fb68e50
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/server/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ app.get('/test', function(req, res){
return res.send('Test U out');
})

app.listen(8001)
app.listen(80)

//
//
Expand Down
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Shopperpedia</title>

<script src="js/sencha-touch-debug.js" type="text/javascript"></script>
<script src="js/sencha-touch.js" type="text/javascript"></script>
<script src="js/client/welcome_forms.js" type="text/javascript"></script>
<script src="js/client/shopping_list.js" type="text/javascript"></script>
<script src="js/client/app.js" type="text/javascript"></script>
Expand Down
2 changes: 1 addition & 1 deletion src/server/app.k
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ app.get('/test', (req, res){
res.send('Test U out');
})

app.listen(8001)
app.listen(80)

//
//
Expand Down

0 comments on commit fb68e50

Please sign in to comment.