Created
January 27, 2012 12:34
-
-
Save ToJans/1688574 to your computer and use it in GitHub Desktop.
ClientSidePlugins for jabbr
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
interceptor.plugins.push({ | |
description: "Typing ZOMG will be expanded to the full expression", | |
filter: /\b(zomg)\b/gi, | |
func: function (input, match) { | |
return input.replace(/\bzomg\b/i, 'Zombies Ohh My Gawd !!!'); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment