Results 1 to 3 of 3

Thread: [Fix] open contact popup

  1. #1

    [Fix] open contact popup

    Hello guys,

    the current link for the 'open contacts popup' button in 'Quick Links' is :
    Code:
    http://www.sb-innovation.de/javascript://window.open(getBaseUrl()   'misc.php?do=buddylist&focus=1','buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300'); return false;
    which is has to be :
    Code:
    javascript:window.open(getBaseUrl() + 'misc.php?do=buddylist&focus=1','buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300');
    I tried it in firefox's scratchpad the that's what has worked for me.
    Thanks

  2. Who Said Thanks:

    Instab (16.08.14) , anon (12.07.14)

  3. #2
    Here's a greasemonkey script to fix this:
    Code:
    // ==UserScript==
    // @id             www.sb-innovation.de-1526a216-1d36-4e89-9a08-0e8494e76e66@scriptish
    // @name           FixContactList
    // @version        1.0
    // @namespace      
    // @author         Lucius
    // @description    
    // @include        http://www.sb-innovation.de/*
    // @run-at         document-end
    // ==/UserScript==
    document.getElementById("vbqlink_contacts").innerHTML = "<a href=\"misc.php?do=buddylist&amp;focus=1\" onclick=\"window.open(this.href,'buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300');return false;\">Open Contacts Popup</a>";
    buttons inner HTML should be :
    Code:
    <a href=\"misc.php?do=buddylist&amp;focus=1\" onclick=\"window.open(this.href,'buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300');return false;\">Open Contacts Popup</a>
    Last edited by Lucius; 15.08.14 at 20:35.
    Thanks

  4. #3
    Moderator
    Rebound's Avatar
    Join Date
    19.04.07
    Location
    Ende der Welt
    P2P Client
    Faze Mod 0.2 Private Beta
    Posts
    3,723
    Activity Longevity
    6/20 20/20
    Today Posts
    0/5 sssss3723
    Thanks Lucius for this suggestion. I will check it, if I'm back from holidays. :)


    Thanks

  5. Who Said Thanks:

    Lucius (16.08.14)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •