Skip to content

Commit

Permalink
Fix a typo in Platform.js (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
mangatinanda authored and kirill-konshin committed Jul 26, 2017
1 parent 65091ed commit cbff4e9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/platform/Platform.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@ Platform.prototype.loginWindow = function(options) {
if (!options.url) throw new Error('Missing mandatory URL parameter');

options = options || {};
options.url = options.url || 400;
options.width = options.width || 400;
options.height = options.height || 600;
options.origin = options.origin || window.location.origin;
Expand Down Expand Up @@ -695,4 +694,4 @@ Platform.prototype._authHeader = function() {
return this._auth.tokenType() + (token ? ' ' + token : '');
};

module.exports = Platform;
module.exports = Platform;

0 comments on commit cbff4e9

Please sign in to comment.