X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/00573cf7d28472bf926e8f610a256cd991879c8b..42c20b25e1325124b88e3b9b285544dc41122b56:/apps/workbench/app/assets/javascripts/edit_collection.js diff --git a/apps/workbench/app/assets/javascripts/edit_collection.js b/apps/workbench/app/assets/javascripts/edit_collection.js index 7da3e95c06..9220ac3c54 100644 --- a/apps/workbench/app/assets/javascripts/edit_collection.js +++ b/apps/workbench/app/assets/javascripts/edit_collection.js @@ -1,9 +1,17 @@ +// Copyright (C) The Arvados Authors. All rights reserved. +// +// SPDX-License-Identifier: AGPL-3.0 + // On loading of a collection, enable the "lock" button and // disable all file modification controls (upload, rename, delete) $(document). ready(function(event) { $(".btn-collection-file-control").addClass("disabled"); + $(".btn-collection-rename-file-span").attr("title", "Unlock collection to rename file"); + $(".btn-collection-remove-file-span").attr("title", "Unlock collection to remove file"); + $(".btn-remove-selected-files").attr("title", "Unlock collection to remove selected files"); $(".tab-pane-Upload").addClass("disabled"); + $(".tab-pane-Upload").attr("title", "Unlock collection to upload files"); $("#Upload-tab").attr("data-toggle", "disabled"); }). on('click', '.lock-collection-btn', function(event) { @@ -15,8 +23,12 @@ $(document). $(".lock-collection-btn").removeClass("fa-lock"); $(".lock-collection-btn").addClass("fa-unlock"); $(".lock-collection-btn").attr("title", "Lock collection to prevent editing files"); + $(".btn-collection-rename-file-span").attr("title", ""); + $(".btn-collection-remove-file-span").attr("title", ""); $(".btn-collection-file-control").removeClass("disabled"); + $(".btn-remove-selected-files").attr("title", ""); $(".tab-pane-Upload").removeClass("disabled"); + $(".tab-pane-Upload").attr("data-original-title", ""); $("#Upload-tab").attr("data-toggle", "tab"); } else { // User clicked "no" and so do not unlock @@ -26,8 +38,12 @@ $(document). $(".lock-collection-btn").removeClass("fa-unlock"); $(".lock-collection-btn").addClass("fa-lock"); $(".lock-collection-btn").attr("title", "Unlock collection to edit files"); + $(".btn-collection-rename-file-span").attr("title", "Unlock collection to rename file"); + $(".btn-collection-remove-file-span").attr("title", "Unlock collection to remove file"); $(".btn-collection-file-control").addClass("disabled"); + $(".btn-remove-selected-files").attr("title", "Unlock collection to remove selected files"); $(".tab-pane-Upload").addClass("disabled"); + $(".tab-pane-Upload").attr("data-original-title", "Unlock collection to upload files"); $("#Upload-tab").attr("data-toggle", "disabled"); } });