-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add spinner * Add spiner js * [SUPDESQ-25] - added support for validating empty json array (#219) * [SUPDESQ-37] Unpublish all (#212) * Remove select and add table * Make unpublish separate method * Fix the validation error for multiple resources * Improve table styling Create portal naming helper * Add hidden input for the destination schema name * Iterate through the publish log * Small refactor over schema definition for unpublish * [SUPDESQ-39] - added the spatial map input form and geometry validation (#213) * [SUPDESQ-72] updated data service label (#217) * [SUPDESQ-73] added new filter for temporal coverage (#216) * [SUPDESQ-35] - added support for quantity kind (#215) * [SUPDESQ-34] - updated vocab name for shared vocab * [SUPDESQ-35] - fix issue when grouping quantity kinds (#224) * Rename the vobaulary_names according qdes schema (#226) * Fix the issue with unpublish (#227) * [SUPDESQ-47] moved loader to snippets * [SUPDESQ-47] add new form to have loader * Fix typo in 'Needs republishing' * [SUPDESQ-47] - fix spinner issue (#230) * [SUPDESQ-35] removed recursive and dimensionless (#225) * [SUPDESQ-37] Unpublish issues (#228) * Fix the issue with unpublish * Fix the plural message and logic in unpublishing * Fix bugs * Plural/singulare message for queued unpublishing * Fix typos * Removed unused code Co-authored-by: Mark Calvert <[email protected]> * Fixed issue with publishing returning Internal Server error if new resource did not have `package_id` set Co-authored-by: Nathan Perry <[email protected]> Co-authored-by: Konstantin Sivakov <[email protected]> Co-authored-by: Awang <[email protected]>
- Loading branch information
1 parent
c529b36
commit c0eca15
Showing
19 changed files
with
268 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
function removeLoader() { | ||
var $loaderEl = jQuery('.loader'); | ||
$loaderEl.fadeOut(500, function () { | ||
// fadeOut complete. Remove the loading div | ||
$loaderEl.remove(); //makes page more lightweight | ||
}); | ||
} | ||
jQuery(window).on('load', function () { | ||
removeLoader(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.