removed trello, gitignore

This commit is contained in:
Kenneth Jao 2018-01-24 18:59:56 -05:00
parent 18cdd67b1c
commit d7664e6335
4 changed files with 9 additions and 6 deletions

View File

@ -6,6 +6,10 @@ __pycache__/
*.py[cod] *.py[cod]
*$py.class *$py.class
#Pipenv
Pipfile
Pipfile.lock
# C extensions # C extensions
*.so *.so

View File

@ -15,7 +15,7 @@ body {
color: white; color: white;
font-family: 'Open Sans Condensed', sans-serif; font-family: 'Open Sans Condensed', sans-serif;
grid-template-columns: 13% auto; grid-template-columns: 15% auto;
grid-template-rows: 8% auto; grid-template-rows: 8% auto;
} }

View File

@ -1,7 +1,7 @@
var navSelect = "home"; var navSelect = "home";
var serverURL = window.location.origin; var serverURL = window.location.origin;
var data; var data;
var trelloInfo = {}; // var trelloInfo = {};
var navi = [ // Array containing navigation items in form [Font-Awesome class name, Display Text, Onclick function]. var navi = [ // Array containing navigation items in form [Font-Awesome class name, Display Text, Onclick function].
@ -237,7 +237,7 @@ document.onclick = function(event) {
} }
} }
function getTrelloCards() { /*function getTrelloCards() {
Trello.authorize(); Trello.authorize();
var cardArr, listArr, lists; var cardArr, listArr, lists;
var cards = window.Trello.rest( var cards = window.Trello.rest(
@ -262,9 +262,8 @@ function getTrelloCards() {
function error(e) { function error(e) {
console.log(e); console.log(e);
}); });
} }*/
getData(); getData();
getTrelloCards();
createNav(); createNav();
updateNav(navSelect); updateNav(navSelect);

View File

@ -12,7 +12,7 @@
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="{{ url_for('static', filename='velocity.min.js') }}"></script> <script src="{{ url_for('static', filename='velocity.min.js') }}"></script>
<script src="https://use.fontawesome.com/c8d5486cd8.js"></script> <script src="https://use.fontawesome.com/c8d5486cd8.js"></script>
<script src="https://trello.com/1/client.js?key=dd3d6b561fe1a0abcacdc80ad0c4fd9a"></script> <!-- <script src="https://trello.com/1/client.js?key=dd3d6b561fe1a0abcacdc80ad0c4fd9a"></script> -->
</head> </head>
<body> <body>