JSFiddle - React, Tailwind, and code Playground
by shaunxcode
JavaScript
(function(){ /************************************************************** * * Firebug Lite 1.4.0 * * Copyright (c) 2007, Parakey Inc. * Released under BSD license. * More information: http://getfirebug.com/firebuglite * **************************************************************/ /* * CSS selectors powered by: * * Sizzle CSS Selector Engine - v1.0 * Copyright 2009, The Dojo Foundation * Released under the MIT, BSD, and GPL Licenses. * More information: http://sizzlejs.com/ */ FBL={}; (function(){var productionDir="http://getfirebug.com/releases/lite/"; var bookmarkletVersion=4; var reNotWhitespace=/[^\s]/; var reSplitFile=/:\/{1,3}(.*?)\/([^\/]*?)\/?($|\?.*)/; this.reJavascript=/\s*javascript:\s*(.*)/; this.reChrome=/chrome:\/\/([^\/]*)\//; this.reFile=/file:\/\/([^\/]*)\//; var userAgent=navigator.userAgent.toLowerCase(); this.isFirefox=/firefox/.test(userAgent); this.isOpera=/opera/.test(userAgent); this.isSafari=/webkit/.test(userAgent); this.isIE=/msie/.test(userAgent)&&!/opera/.test(userAgent); this.isIE6=/msie 6/i.test(navigator.appVersion); this.browserVersion=(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1]; this.isIElt8=this.isIE&&(this.browserVersion-0<8); this.NS=null; this.pixelsPerInch=null; var namespaces=[]; this.ns=function(fn){var ns={}; namespaces.push(fn,ns); return ns }; var FBTrace=null; this.initialize=function(){if(window.firebug&&firebug.firebuglite||window.console&&console.firebuglite){return }if(FBL.FBTrace){FBTrace=FBL.FBTrace }else{FBTrace=FBL.FBTrace={} }var isChromeContext=window.Firebug&&typeof window.Firebug.SharedEnv=="object"; if(isChromeContext){sharedEnv=window.Firebug.SharedEnv; delete window.Firebug.SharedEnv; FBL.Env=sharedEnv; FBL.Env.isChromeContext=true; FBTrace.messageQueue=FBL.Env.traceMessageQueue }else{FBL.NS=document.documentElement.namespaceURI; FBL.Env.browser=window; FBL.Env.destroy=destroyEnvironment;...