Dashboard sipadu mbip
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

xhr-local.js 352B

1234567891011121314151617
  1. 'use strict';
  2. var inherits = require('inherits')
  3. , XhrDriver = require('../driver/xhr')
  4. ;
  5. function XHRLocalObject(method, url, payload /*, opts */) {
  6. XhrDriver.call(this, method, url, payload, {
  7. noCredentials: true
  8. });
  9. }
  10. inherits(XHRLocalObject, XhrDriver);
  11. XHRLocalObject.enabled = XhrDriver.enabled;
  12. module.exports = XHRLocalObject;