This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var cssRule = `.__web-inspector-hide-shortcut__, .__web-inspector-hide-shortcut__ * { | |
display: none !important; | |
}`; | |
function injectStyleRulejQ(rule, id) { | |
var div = $("<div />", { | |
html: '­<style id=' + id + '>' + rule + '</style>' | |
}).appendTo("body"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Template | |
// ================= | |
/*! | |
* jQuery Templates Plugin 1.0.0pre | |
* http://github.com/jquery/jquery-tmpl | |
* Requires jQuery 1.4.2 | |
* | |
* Copyright Software Freedom Conservancy, Inc. | |
* Dual licensed under the MIT or GPL Version 2 licenses. | |
* http://jquery.org/license |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var aa=[]; | |
$($0).find("option").each(function(i,el){ | |
var htmlCont = $(this).html(); | |
aa.push(htmlCont) | |
console.log($(this).html()); | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery.fn.jquery |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*START: Create Script Tag and append in last line of body*/ | |
function addScript( src ) { | |
var s = document.createElement( 'script' ); | |
s.setAttribute( 'src', src ); | |
document.body.appendChild( s ); | |
} | |
/*END: Create Script Tag and append in last line of body*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin ellipsis() { | |
overflow: hidden; | |
white-space: nowrap; | |
text-overflow: ellipsis; | |
} | |
@mixin word-wrap() { | |
overflow-wrap: break-word; | |
word-wrap: break-word; | |
-ms-word-break: break-all; | |
word-break: break-word; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.body.contentEditable=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setTimeout(function(){ | |
debugger; | |
}, 5000); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.reloadWithDebugInfo() | |
NewerOlder