Bugzilla – Attachment 117727 Details for
Bug 27751
Phase out jquery.cookie.js: Batch item modifications
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27751: Phase out jquery.cookie.js: Batch item modifications
Bug-27751-Phase-out-jquerycookiejs-Batch-item-modi.patch (text/plain), 3.83 KB, created by
Katrin Fischer
on 2021-03-04 14:16:18 UTC
(
hide
)
Description:
Bug 27751: Phase out jquery.cookie.js: Batch item modifications
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2021-03-04 14:16:18 UTC
Size:
3.83 KB
patch
obsolete
>From 3edfa0ae456c452d17ca8b80ed247b38fd5fecdf Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Mon, 22 Feb 2021 16:49:12 +0000 >Subject: [PATCH] Bug 27751: Phase out jquery.cookie.js: Batch item > modifications > >To test, apply the patch and go to Tools -> Batch item modification. > >- Submit a batch of barcodes for modification. >- Uncheck some checkboxes to hide columns in the table showing your > submitted items. >- Return to the batch item modification page and submit your batch > again. >- The columns you selected should still be hidden. >- Submit a batch of items for deletion. >- The same columns should be hidden here too. >- Also test that the "Show all columns" and "Hide all columns" buttons > work and that the changes persist across batches. > >Signed-off-by: David Nind <david@davidnind.com> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > koha-tmpl/intranet-tmpl/prog/js/pages/batchMod.js | 16 ++++++++-------- > 1 file changed, 8 insertions(+), 8 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/pages/batchMod.js b/koha-tmpl/intranet-tmpl/prog/js/pages/batchMod.js >index f71cc3b102..4816036d3e 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/pages/batchMod.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/pages/batchMod.js >@@ -1,10 +1,10 @@ >-/* global dataTablesDefaults allColumns */ >+/* global dataTablesDefaults allColumns Cookies */ > // Set expiration date for cookies > var date = new Date(); > date.setTime(date.getTime() + (365 * 24 * 60 * 60 * 1000)); > > function hideColumns() { >- var valCookie = $.cookie("showColumns"); >+ var valCookie = Cookies.get("showColumns"); > if (valCookie) { > valCookie = valCookie.split("/"); > $("#showall").prop("checked", false).parent().removeClass("selected"); >@@ -20,7 +20,7 @@ function hideColumns() { > > function hideColumn(num) { > $("#hideall,#showall").prop("checked", false).parent().removeClass("selected"); >- var valCookie = $.cookie("showColumns"); >+ var valCookie = Cookies.get("showColumns"); > // set the index of the table column to hide > $("#" + num).parent().removeClass("selected"); > var hide = Number(num.replace("checkheader", "")) + 3; >@@ -39,10 +39,10 @@ function hideColumn(num) { > if (!found) { > valCookie.push(hide); > var cookieString = valCookie.join("/"); >- $.cookie("showColumns", cookieString, { expires: date, path: '/' }); >+ Cookies.set("showColumns", cookieString, { expires: date, path: '/' }); > } > } else { >- $.cookie("showColumns", hide, { expires: date, path: '/' }); >+ Cookies.set("showColumns", hide, { expires: date, path: '/' }); > } > } > >@@ -57,7 +57,7 @@ Array.prototype.remove = function (from, to) { > function showColumn(num) { > $("#hideall").prop("checked", false).parent().removeClass("selected"); > $("#" + num).parent().addClass("selected"); >- var valCookie = $.cookie("showColumns"); >+ var valCookie = Cookies.get("showColumns"); > // set the index of the table column to hide > var show = Number(num.replace("checkheader", "")) + 3; > // hide header and cells matching the index >@@ -74,7 +74,7 @@ function showColumn(num) { > } > if (found) { > var cookieString = valCookie.join("/"); >- $.cookie("showColumns", cookieString, { expires: date, path: '/' }); >+ Cookies.set("showColumns", cookieString, { expires: date, path: '/' }); > } > } > } >@@ -97,7 +97,7 @@ function hideAllColumns() { > $("#itemst td:nth-child(3),#itemst th:nth-child(3)").nextAll().hide(); > $("#hideall").prop("checked", true).parent().addClass("selected"); > var cookieString = allColumns.join("/"); >- $.cookie("showColumns", cookieString, { expires: date, path: '/' }); >+ Cookies.set("showColumns", cookieString, { expires: date, path: '/' }); > } > > $(document).ready(function () { >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 27751
:
117171
|
117244
| 117727