Skip to content

Commit

Permalink
Merge pull request #259 from entrylabs/hotfix/hw-download
Browse files Browse the repository at this point in the history
Hotfix/hw download
  • Loading branch information
geniusjuno7 committed Apr 21, 2016
2 parents 598e4e2 + d3e4bbb commit 12e72c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -12757,7 +12757,7 @@ p.closeConnection = function() {
this.socket && this.socket.close();
};
p.downloadConnector = function() {
window.open("https://github.com/entrylabs/entry-hw/releases/download/1.1.4/Entry_HW_v1.1.4.exe", "_blank").focus();
window.open("http://github.com/entrylabs/entry-hw/releases/download/1.1.4/Entry_HW_v1.1.4.exe", "_blank").focus();
};
p.downloadSource = function() {
window.open("http://play-entry.com/down/board.ino", "_blank").focus();
Expand Down
2 changes: 1 addition & 1 deletion dist/entry.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 src/hw.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ p.closeConnection = function() {
};

p.downloadConnector = function() {
var url = "https://github.com/entrylabs/entry-hw/releases/download/1.1.4/Entry_HW_v1.1.4.exe";
var url = "http://github.com/entrylabs/entry-hw/releases/download/1.1.4/Entry_HW_v1.1.4.exe";
var win = window.open(url, '_blank');
win.focus();
};
Expand Down

0 comments on commit 12e72c3

Please sign in to comment.