Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I thought it would be nice to open a resource from the web inspector sidebar in directly TextMate instead of the web inspector source view, but adding

        <script type="text/javascript" charset="utf-8">
        window.onload = function() {
            var links = document.getElementsByTagName("a");
            for (var i=0;i<links.length;i++) {
                if(links[i].className==="webkit-html-resource-link") {
                    links[i].addEventListener('click',function(e) {
                        console.log('openInTextmate', e);
                        e.preventDefault();
                        var tmLocation = 'txmt://open/?url=' + e.target.href;
                        window.location = tmLocation;
                    },false);
                }
            };
        };
    </script>

to the inspector.html didn't work. The event listeners are added but never fired. Does somebody have some experience of why this could be like this?

share|improve this question

1 Answer

up vote 2 down vote accepted

the problem is that the click event propagation is stopped before the event reaches your handler. This happens in WebInspector.documentClick(inspector.js):

http://codesearch.google.com/codesearch/p?hl=en#OAMlx_jo-ck/src/third_party/WebKit/WebCore/inspector/front-end/inspector.js&q=WebInspector.documentClick&exact_package=chromium&l=728

I believe you can put your code directly into WebInspector.documentClick to make it work for now. It also sounds like a good feature request for inspector extension API.

share|improve this answer
I've filed a bug against Web Inspector regarding this feature: bugs.webkit.org/show_bug.cgi?id=51526 – Yury Semikhatsky Dec 23 '10 at 9:31
thanks, will check that out. – Jakob Stoeck Jan 7 '11 at 18:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.