• We just upgraded the platform on which this website runs! Please inform @Jaxel of any issues.

Search results

  1. Jaxel

    Dreamweaver support?

    Can't you see the source code in Dreamweaver? Just cut and paste.
  2. Jaxel

    Double Piping not working?

    The double piping has to be in your code. It's not a default thing. So for instance, you would do something like: var versus_1 = docData['versus_1'].split('||'); Then you would access the two pieces of data with versus_1[0] and versus_1[1].
  3. Jaxel

    firebase help

    You are trying to connect to Firebase's Real-Time Database system. We actually use Firebase's Cloud Firestore system. You are also trying to use the Admin SDK. Use the Client SDK.
  4. Jaxel

    Planned Challonge Integration

    About a year ago, I got an email from the Challonge guys, saying their new API was on the horizon... then the virus happened.
  5. Jaxel

    Implemented Access data from other pages

    Does your console say there is a value for spiller_1? Do you have a div ID of spillereHer?
  6. Jaxel

    Timeclock is not pausing

    You named your timer as countdown. Yet you have at the top: clearInterval(timeclock);
  7. Jaxel

    Implemented Access data from other pages

    JavaScript is a JIT language, and thus has very specific scoping for variables. Variables only exist within the { } brackets in which they were created.
  8. Jaxel

    Scoreboard Assistant in Offline Mode

    Nope. The assumption for live streaming... is that you are live and streaming.
  9. Jaxel

    Is it possible to get data from one page to another?

    That would be because of JavaScript's terrible handling of variable scoping. JS is a shit language.
  10. Jaxel

    Color Picker

    http://8wr.io/threads/color-picker-type-variable.16/#post-238
  11. Jaxel

    Timer Using Minutes and Seconds

    The tutorial shows: function calcTimer(time) { let neg = (time < 0) ? '- ' : ''; time = Math.abs(time / 1000); hours = (Math.floor(time / 3600)).toString().padStart(2, '0'); minutes = (Math.floor(time % 3600 / 60)).toString().padStart(2, '0'); seconds = (time %...
  12. Jaxel

    Is it possible to get data from one page to another?

    http://8wr.io/threads/access-data-from-other-pages.6/
  13. Jaxel

    Selection Menu Dropdown when Using Scoreboard Component

    A dropdown appears as you type. Is that not good enough? Converting it to a full dropdown would make it impossible to type.
  14. Jaxel

    Do not share direct links to your Browser Source pages!

    Browser source pages are in the format of: http://8wr.io/scoreboard/source/<package_id>/<page_id>/ The <package_id> and <page_id> references in the URL to your browser source are essentially the API key to your page. Sharing them means someone could theoretically alter the values in your page...
  15. Jaxel

    Data not updating

    I just looked at your page... its working fine for me.
  16. Jaxel

    Implemented Color picker Type Variable

    Assuming the field you want to update has class="jersey_1", you could do: $('.jersey_1').css('background-color', docData['players_1s'])
  17. Jaxel

    Implemented Color picker Type Variable

    It is not possible to update CSS in real time... that's just not something browsers can do. You have to place the style information in inline HTML in this case.
  18. Jaxel

    Data not updating

    Make me an editor on your package so I can look at it.
  19. Jaxel

    Mixer is dead, Long Live Trovo!

    Microsoft decided a few months ago that their investment into Beam (later renamed to Mixer) was coming to an end. As such, about two weeks ago, they shut the Mixer platform down completely. It's a shame, because I believe the advancement of Mixer was the only thing forcing Amazon to keep Twitch...