Advertisement
imedvedev

Untitled

Apr 26th, 2014
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. /************************************************************************************
  2. This is your Page Code. The appAPI.ready() code block will be executed on every page load.
  3. For more information please visit our docs site: http://docs.crossrider.com
  4. *************************************************************************************/
  5.  
  6. appAPI.ready(function($) {
  7. var t = "";
  8. var l = navigator.language || navigator.userLanguage;
  9.  
  10. appAPI.selectedText(function(text, event) {
  11. t = text;
  12. });
  13.  
  14. appAPI.shortcut.add("Alt+W", function() {
  15. appAPI.openURL({
  16. url: "http://"+ l +".wikipedia.org/wiki/"+t,
  17. where: "tab",
  18. focus: false
  19. });
  20. }, {
  21. type: 'keydown',
  22. propagate: true,
  23. disable_in_input: true,
  24. target: document
  25. }
  26. );
  27. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement