Guest User

Untitled

a guest
Jan 21st, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. var widget = require('widget').Widget({
  2. label: 'Settings',
  3. id: 'settings',
  4. //panel: text_entry
  5. contentURL: data.url('images/stgfavicon.ico'),
  6. contentScriptFile: data.url('scripts/submit.js'),
  7. onClick: function() {
  8. tabs.open(data.url('forms/settings.html'));
  9. }
  10. });
  11.  
  12. tabs.open({
  13. url: data.url('forms/settings.html'),
  14. onOpen: function onOpen(tab) {
  15. tab.attach({ contentScriptFile: data.url('scripts/submit.js'); });
  16. }
  17. });
Add Comment
Please, Sign In to add comment