mirror of https://github.com/zulip/zulip.git
portico: Mention about thirdparty desktop apps.
This commit is contained in:
parent
158890cb9b
commit
d504c336dc
|
@ -127,6 +127,7 @@ var apps_events = function () {
|
||||||
|
|
||||||
var update_page = function () {
|
var update_page = function () {
|
||||||
var $download_instructions = $(".download-instructions");
|
var $download_instructions = $(".download-instructions");
|
||||||
|
var $third_party_apps = $("#third-party-apps");
|
||||||
var version_info = info[version];
|
var version_info = info[version];
|
||||||
|
|
||||||
$(".info .platform").text(version_info.alt);
|
$(".info .platform").text(version_info.alt);
|
||||||
|
@ -140,6 +141,13 @@ var apps_events = function () {
|
||||||
} else {
|
} else {
|
||||||
$download_instructions.hide();
|
$download_instructions.hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (version === "mac" || version === "windows" || version === "linux") {
|
||||||
|
$third_party_apps.show();
|
||||||
|
} else {
|
||||||
|
$third_party_apps.hide();
|
||||||
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
$(window).on('popstate', function () {
|
$(window).on('popstate', function () {
|
||||||
|
|
|
@ -2158,3 +2158,8 @@ input.new-organization-button {
|
||||||
.portico-page.error .portico-page-container {
|
.portico-page.error .portico-page-container {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#third-party-apps {
|
||||||
|
margin-top: 20px;
|
||||||
|
padding-right: 10px;
|
||||||
|
}
|
||||||
|
|
|
@ -58,6 +58,12 @@
|
||||||
<i class="icon fa fa-mobile-phone" data-label="iOS"></i>
|
<i class="icon fa fa-mobile-phone" data-label="iOS"></i>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</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>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in New Issue