Advertisement
gavin19

Light/Dark

Jun 19th, 2011
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. Before :
  2.  
  3. include: Array(
  4. /https?:\/\/([a-z]+).reddit.com\/[-\w\.\/]*/i
  5. ),
  6. isMatchURL: function() {
  7. return RESUtils.isMatchURL(this.moduleID);
  8. },
  9.  
  10. After :
  11.  
  12. include: Array(
  13. /https?:\/\/([a-z]+).reddit.com\/[-\w\.\/]*/i
  14. ),
  15. exclude: Array(
  16. /https?:\/\/([a-z]+).reddit.com\/r\/apple\/[-\w\.\/]*/i
  17. ),
  18. isMatchURL: function() {
  19. return RESUtils.isMatchURL(this.moduleID);
  20. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement