Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

'import to Deck' is fixed in version 26 #10

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<name>Deck Import From Trello</name>
<summary>nextcloud app that allows Deck import from Trello export to JSON file</summary>
<description><![CDATA[nextcloud app that allows Deck import from Trello export to JSON file]]></description>
<version>1.0.2</version>
<version>1.0.2wga</version>
<licence>agpl</licence>
<author mail="[email protected]" homepage="https://newro.co">newroco</author>
<namespace>DeckImportFromTrello</namespace>
<category>tools</category>
<bugs>https://github.com/newroco/DeckImportFromTrello/issues</bugs>
<dependencies>
<nextcloud min-version="18" max-version="24"/>
<nextcloud min-version="18" max-version="27"/>
</dependencies>
<settings>
<personal>OCA\DeckImportFromTrello\Settings\Personal</personal>
Expand Down
4 changes: 2 additions & 2 deletions js/deckimportfromtrello.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
var url = OC.generateUrl('/apps/deckimportfromtrello/');

$(document).ready(function () {
if ($('#dir').length > 0) {
//if ($('#dir').length > 0) {
OCA.Files.fileActions.registerAction({
name: 'deckimportfromtrello',
displayName: 'Import to Deck',
Expand All @@ -15,7 +15,7 @@
importFile(context.$file);
}
});
}
// }
});

function importFile($file) {
Expand Down