portico: Mention about thirdparty desktop apps.

This commit is contained in:
Vishnu Ks 2018-04-27 16:14:55 +00:00 committed by Tim Abbott
parent 158890cb9b
commit d504c336dc
3 changed files with 19 additions and 0 deletions

View File

@ -127,6 +127,7 @@ var apps_events = function () {
var update_page = function () {
var $download_instructions = $(".download-instructions");
var $third_party_apps = $("#third-party-apps");
var version_info = info[version];
$(".info .platform").text(version_info.alt);
@ -140,6 +141,13 @@ var apps_events = function () {
} else {
$download_instructions.hide();
}
if (version === "mac" || version === "windows" || version === "linux") {
$third_party_apps.show();
} else {
$third_party_apps.hide();
}
};
$(window).on('popstate', function () {

View File

@ -2158,3 +2158,8 @@ input.new-organization-button {
.portico-page.error .portico-page-container {
padding: 0;
}
#third-party-apps {
margin-top: 20px;
padding-right: 10px;
}

View File

@ -58,6 +58,12 @@
<i class="icon fa fa-mobile-phone" data-label="iOS"></i>
</a>
</div>
<div id="third-party-apps">
Zulip also works great in pinned browser tabs and
multi-protocol desktop chat apps
like <a href="http://rambox.pro">Rambox</a>
and <a href="https://meetfranz.com">Franz</a>.
</div>
</div>
</div>
{% endblock %}