Skip to content
This repository was archived by the owner on Oct 29, 2021. It is now read-only.

Commit d6b3bdc

Browse files
committed
hiding disabled functions
1 parent 6233077 commit d6b3bdc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

extension.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ define(function(require, exports, module) {
8282
function platformTuning() {
8383
if (isCordova) {
8484
$('#' + extensionID + 'Export2CSVButton').hide();
85+
$('#' + extensionID + 'AddFileButton').hide(); // TODO tmp disabled due not working binary saving
8586
} else if (isChrome) {
8687
$('#' + extensionID + 'AddFileButton').hide();
8788
$('#' + extensionID + 'TagButton').hide();

toolbar.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
<li><a id="{{id}}CreateTXTFileButton">
1717
<i class="fa fa-file-text-o fa-lg fa-fw"></i>&nbsp;<span data-i18n="ns.perspectiveList:createTXTFile"></span>
1818
</a></li>
19-
<li><a id="{{id}}CreateFileButton">
19+
<!--li><a id="{{id}}CreateFileButton">
2020
<i class="fa fa-file-o fa-lg fa-fw"></i>&nbsp;<span data-i18n="ns.perspectiveList:showNewFileDialog"></span>
21-
</a></li>
21+
</a></li-->
2222
<li><a id="{{id}}AddFileButton">
2323
<i class="fa fa-plus-circle fa-lg fa-fw"></i>&nbsp;<span data-i18n="ns.perspectiveList:showAddFileDialog"></span>
2424
</a></li>

0 commit comments

Comments
 (0)