Skip to content

Commit

Permalink
changed domain back to dom
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwohl committed May 19, 2015
1 parent fd2e2a2 commit f4d8b2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frame.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ program
.version('0.0.1')
.option('-u, --username <username>', 'Username to which this frame will be linked.')
.option('-f, --framename <framename>', 'Name for the frame.')
.option('-d, --domain <domain>', 'The root domain (including port) at which the frame server is accessible. Defaults to localhost:8888.')
.option('-d, --dom <dom>', 'The root domain (including port) at which the frame server is accessible. Defaults to localhost:8888.')
.option('-r, --reset', 'If present, reset the configuration, i.e. treat this as an entirely new frame.')
.option('-c, --chromium', 'If this flag is present, force the use chromium.')
.parse(process.argv);
Expand All @@ -20,7 +20,7 @@ if (!program.username) {
}

var username = program.username,
root_domain = program.domain || "localhost:8888",
root_domain = program.dom || "localhost:8888",
chromium = program.chromium,
reset = program.reset,
framename = program.framename || 'New Frame';
Expand Down

0 comments on commit f4d8b2d

Please sign in to comment.