First commit, version 0.1 beta base nibiru framework

This commit is contained in:
Stephan Kasdorf
2017-06-16 12:21:19 +02:00
parent 7d475ceb6b
commit 4bfe207b78
556 changed files with 113905 additions and 26 deletions

View File

@@ -0,0 +1,16 @@
$( document ).ready(function() {
console.log( "Nibiru Debugbar loaded!" );
$("#nibiru-bar-open").click(function() {
if($('#nibiru-debug').hasClass('up')) {
$('#nibiru-debug').addClass('down', 1000, 'easeOutElastic');
$('#nibiru-debug').removeClass('up');
$('#nibiru-bar-open').addClass('closed', 1000, 'easeOutElastic');
$('#nibiru-bar-open').removeClass('open');
} else {
$('#nibiru-debug').removeClass('down');
$('#nibiru-debug').addClass('up', 1000, 'easeInElastic');
$('#nibiru-bar-open').removeClass('closed');
$('#nibiru-bar-open').addClass('open', 1000, 'easeInElastic');
}
});
});