Here's what I'd like to do:
Say the file diff shows:
I'd like to click "Hide Context" and for the unmodified functions to disappear. The result would be
The same would apply for XSL/XML/etc. Any ideas?
Say the file diff shows:
Code:
function foo(){ alert(myVar); } function bar(){ alert(yourVar); [COLOR="red"]alert('New Alert'); // difference - only shows on right side[/COLOR] } function baz(){ alert('hello world'); }
Code:
function bar(){ alert(yourVar); [COLOR="red"]alert('New Alert'); // difference - only shows on right side[/COLOR] }
Comment