ugly workaround for ssl on windows
This commit is contained in:
parent
ce9900559d
commit
9019c95f75
3 changed files with 22 additions and 8 deletions
|
@ -129,7 +129,10 @@ define(function() {
|
|||
}
|
||||
|
||||
HostApp.osType = function() {
|
||||
return OS_TYPE == "mac" ? "OS X" : "Linux";
|
||||
var os_name = "OS X";
|
||||
if (OS_TYPE == "windows") os_name = "Windows";
|
||||
if (OS_TYPE == "linux") os_name = "Linux"
|
||||
return os_name;
|
||||
}
|
||||
|
||||
HostApp.notificateViewsAboutDeletedPost = function(postId, entity) {
|
||||
|
|
Reference in a new issue