mirror of
https://github.com/Yetangitu/owncloud-apps.git
synced 2025-10-02 14:49:17 +02:00
files_opds: add skip list to personal settings, bump version to 0.6.0, new dist file
This commit is contained in:
parent
256d2eb879
commit
30ccabed34
7 changed files with 13 additions and 5 deletions
|
@ -25,6 +25,7 @@ $(document).ready(function(){
|
|||
opdsEnable : opdsEnable,
|
||||
rootPath : $('#opds-root-path').val(),
|
||||
fileTypes : $('#opds-file-types').val(),
|
||||
skipList : $('#opds-skip-list').val(),
|
||||
feedTitle : $('#opds-feed-title').val()
|
||||
};
|
||||
OC.msg.startSaving('#opds-personal .msg');
|
||||
|
@ -34,8 +35,8 @@ $(document).ready(function(){
|
|||
OC.msg.finishedSaving('#opds-personal .msg', data);
|
||||
}
|
||||
};
|
||||
$('#opds-root-path,#opds-file-types,#opds-feed-title').blur(opdsSettings.save);
|
||||
$('#opds-root-path,#opds-file-types,#opds-feed-title').keypress(function( event ) {
|
||||
$('#opds-root-path,#opds-file-types,#opds-feed-title,#opds-skip-list').blur(opdsSettings.save);
|
||||
$('#opds-root-path,#opds-file-types,#opds-feed-title,#opds-skip-list').keypress(function( event ) {
|
||||
if (event.which == 13) {
|
||||
event.preventDefault();
|
||||
opdsSettings.save();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue