Ignore:
Timestamp:
03/23/14 22:58:54 (11 years ago)
Author:
hendrikvanantwerpen
Message:
  • Added grey icons for better highlighting, synced block and large buttons.
  • Introduced extra color for text, now disabled/inactive/hovered -> it's not very clear though.
  • Added confirmation on irrevertable actions.
  • Added support for query string in our new request implementation.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk/src/server/util/request.js

    r527 r529  
    33  , HTTPS = require('https')
    44  , URL = require('url')
     5  , QS = require('querystring')
    56  , _ = require('underscore')
    67  ;
     
    2425            'Accepts': 'application/json'
    2526        });
     27    }
     28    if ( reqOpts.qs ) {
     29        reqOpts.path = (reqOpts.path||'')+'?'+QS.stringify(reqOpts.qs);
     30        delete reqOpts.qs;
    2631    }
    2732
Note: See TracChangeset for help on using the changeset viewer.