This file contains hidden or 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
{ | |
"name": ... | |
"version": "1.0", | |
"minimum_chrome_version": "10.0", | |
"devtools_page": "devtools.html", | |
... | |
} |
This file contains hidden or 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
{ | |
"name": ... | |
"version": "1.0", | |
"minimum_chrome_version": "10.0", | |
"devtools_page": "devtools.html", | |
... | |
} |
This file contains hidden or 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
{ | |
"name": ... | |
"version": "1.0", | |
"minimum_chrome_version": "10.0", | |
"devtools_page": "devtools.html", | |
... | |
} |
This file contains hidden or 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
{ | |
"name": ... | |
"version": "1.0", | |
"minimum_chrome_version": "10.0", | |
"devtools_page": "devtools.html", | |
... | |
} |
This file contains hidden or 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
{ | |
"name": ... | |
"version": "1.0", | |
"minimum_chrome_version": "10.0", | |
"devtools_page": "devtools.html", | |
... | |
} |
This file contains hidden or 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
if WebKitMutationObserver? | |
observer = new WebKitMutationObserver observerFunc | |
observer.observe el, {attributes:true} | |
else | |
el.addEventListener "DOMAttrModified",(event)-> | |
wrapper.style.display = el.style.display | |
return |
This file contains hidden or 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
{ | |
"name": ... | |
"version": "1.0", | |
"minimum_chrome_version": "10.0", | |
"devtools_page": "devtools.html", | |
... | |
} |
This file contains hidden or 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 win = window; | |
var doc = win.document; | |
var attrModifiedWorks = false; | |
var listener = function () { attrModifiedWorks = true; }; | |
doc.documentElement.addEventListener("DOMAttrModified", listener, false); | |
doc.documentElement.setAttribute("___TEST___", true); | |
doc.documentElement.removeAttribute("___TEST___", true); | |
doc.documentElement.removeEventListener("DOMAttrModified", listener, false); | |
if (!attrModifiedWorks) | |
{ |
This file contains hidden or 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | |
"http://www.w3.org/TR/html4/strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | |
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script> | |
<link rel="stylesheet" href="fancybox/jquery.fancybox.css?v=2.0.4" type="text/css" media="screen" /> | |
<script type="text/javascript" src="fancybox/jquery.fancybox.pack.js?v=2.0.4"></script> | |
</head> |
This file contains hidden or 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | |
"http://www.w3.org/TR/html4/strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | |
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script> | |
<link rel="stylesheet" href="fancybox/jquery.fancybox.css?v=2.0.4" type="text/css" media="screen" /> | |
<script type="text/javascript" src="fancybox/jquery.fancybox.pack.js?v=2.0.4"></script> | |
</head> |