• Jump To … +
    scandio-0.2.7.js ajax.js bridge.js compatibility.js core.js device.js dom.js is.js json.js logger.js outro.js responsive.js string.js timing.js util.js
  • outro.js

  • ¶

    Outro, AMD and conflict resolution

  • ¶
  • ¶

    Tries to resolve version conflicts by restoring the previously loaded version globally

    Scandio.noConflict = function() {
  • ¶

    Retore the previousScandio

       root.Scandio = previousScandio;
  • ¶

    Return yerself to continue

       return this;
    };
  • ¶

    Support for AMD/RequireJS If define function deefined and its amd

    if (typeof define === 'function' && define.amd) {
  • ¶

    Define Scandio

       define('Scandio', function() {
  • ¶

    and return the library

          return Scandio;
       });
    }
    }(this, jQuery, window, document, undefined));