Skip to content

Commit

Permalink
Merge pull request #40 from euforic/TIMOB-14226
Browse files Browse the repository at this point in the history
[TIMOB-14226 LiveView: building/running fails when LiveView server is not running - subsequently build/run works as expected
  • Loading branch information
Christian Sullivan committed Jul 23, 2013
2 parents bf06f1c + 494ad14 commit 512e8e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/liveview.js
Expand Up @@ -18,7 +18,7 @@ function Process() {
this.versions = {};
this.arch = Ti.Platform.architecture;
this.platform = Ti.Platform.name;
this.hardware = Ti.Platform.model;
this.hardware = ('' + Ti.Platform.model).replace('google_');
}

// inherit from EventEmitter
Expand Down
2 changes: 1 addition & 1 deletion build/liveview.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/platform/process.js
Expand Up @@ -13,7 +13,7 @@ function Process() {
this.versions = {};
this.arch = Ti.Platform.architecture;
this.platform = Ti.Platform.name;
this.hardware = Ti.Platform.model;
this.hardware = ('' + Ti.Platform.model).replace('google_');
}

// inherit from EventEmitter
Expand Down

0 comments on commit 512e8e3

Please sign in to comment.