1
0
Fork 0
mirror of https://github.com/Yetangitu/owncloud-apps.git synced 2025-10-02 14:49:17 +02:00

files_reader: PDF support, basic functions work (i.e. is usable as reader)

This commit is contained in:
frankdelange 2017-03-24 01:34:01 +01:00
parent 0340300ba0
commit 5da12f92e5
18 changed files with 1730 additions and 138 deletions

View file

@ -46,6 +46,8 @@
hideControls: function() {
$('#app-content #controls').hide();
// and, for NC12...
$('#app-navigation').css("display", "none");
},
hide: function() {
@ -54,6 +56,8 @@
}
$("#controls").show();
$('#app-content #controls').removeClass('hidden');
// NC12...
$('#app-navigation').css("display", "");
if ($('#isPublic').val()) {
$('#imgframe').show();
$('footer').show();