removed db from git, updated settings and gitignore, fixes
* FIX: wrong timezone in settings.py * FIX: removed console.log calls from js (exceptions in fx) * UPDATE: git will ignore kdev4 files and k4ever.db * UPDATE: removed database from git
This commit is contained in:
parent
5b3401ffdd
commit
6003472f33
|
@ -5,3 +5,6 @@
|
||||||
*.class
|
*.class
|
||||||
*.bak
|
*.bak
|
||||||
*~
|
*~
|
||||||
|
k4ever/k4ever.db
|
||||||
|
*.kdev4
|
||||||
|
.kdev4
|
||||||
|
|
BIN
k4ever/k4ever.db
BIN
k4ever/k4ever.db
Binary file not shown.
|
@ -58,8 +58,6 @@ jQuery(document).ready(function($) {
|
||||||
if(lock && event.keyCode === 39) {
|
if(lock && event.keyCode === 39) {
|
||||||
selected_item.addClass("load");
|
selected_item.addClass("load");
|
||||||
|
|
||||||
console.log(selected_item);
|
|
||||||
|
|
||||||
$.get("/api/store/buy/" + selection.value + "/", {
|
$.get("/api/store/buy/" + selection.value + "/", {
|
||||||
|
|
||||||
}, function(data, status) {
|
}, function(data, status) {
|
||||||
|
|
|
@ -29,7 +29,7 @@ DATABASES = {
|
||||||
# timezone as the operating system.
|
# timezone as the operating system.
|
||||||
# If running in a Windows environment this must be set to the same as your
|
# If running in a Windows environment this must be set to the same as your
|
||||||
# system time zone.
|
# system time zone.
|
||||||
TIME_ZONE = 'Germany/Berlin'
|
TIME_ZONE = 'Europe/Berlin'
|
||||||
|
|
||||||
# Language code for this installation. All choices can be found here:
|
# Language code for this installation. All choices can be found here:
|
||||||
# http://www.i18nguy.com/unicode/language-identifiers.html
|
# http://www.i18nguy.com/unicode/language-identifiers.html
|
||||||
|
|
Loading…
Reference in New Issue