ugly workaround for ssl on windows

This commit is contained in:
Jeena Paradies 2013-04-03 00:32:43 +02:00
parent ce9900559d
commit 9019c95f75
3 changed files with 22 additions and 8 deletions

View file

@ -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) {