PHP Classes

File: public/js/v3/nibiru-debug.js

Recommend this page to a friend!
  Classes of Stephan Kasdorf (bittomine)   Nibiru   public/js/v3/nibiru-debug.js   Download  
File: public/js/v3/nibiru-debug.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Nibiru
Generate code for rapid application prototyping
Author: By
Last change:
Date: 1 month ago
Size: 720 bytes
 

Contents

Class file image Download
$( 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'); } }); });