Skip to content
View lukesalisbury's full-sized avatar

Block or report lukesalisbury

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. luxengine luxengine Public

    Flexible 2D Game Engine

    C++ 12 4

  2. Wrapper around XHR or Fetch, allows ... Wrapper around XHR or Fetch, allows for automatic retrying of request. Single Callback function passing XMLDocument, JSON, string or Error object type
    1
    /* WebRequest */
    2
    /* Request Object {
    3
     *  type - POST/GET
    4
     *  dataType - Returned Data Type
    5
     *  url - the URL (On GET request, URL() will ignore data
  3. Javascript: Check to Select Element ... Javascript: Check to Select Element is not disabled, and move to enable element if required
    1
    // Return true if selected element is not disabled, if it is disabled, 
    2
    // the selected element will move to the first non disabled element if possible
    3
    HTMLSelectElement.prototype.validateElement = function () {
    4
    	if (this.selectedIndex != -1) {
    5
    		if (!this.children[this.selectedIndex].disabled) {
  4. fetchtv fetchtv Public

    Downloads recording from a FetchTV STB (Aus)

    C++ 2