Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!--
BBEdit Language Module for CoffeeScript
Put this file in
~/Library/Application Support/BBEdit/Language Modules
or equivalent.
Based off of the examples shipped in the BBEdit SDK.
@claudenobs
claudenobs / prototypes.js
Created May 2, 2011 13:04 — forked from xabolcs/prototypes.js
possibly working setCurrentURI() in BarTabWebNavigation
...
/*** These methods and properties are simply passed through. ***/
setCurrentURI: function(aURI) {
return this._original.setCurrentURI(aURI);
},
goBack: function () {
return this._original.goBack();
},
...