forked from gdcc/dataverse-previewers
-
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.
- Loading branch information
Showing
1 changed file
with
8 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
/* | ||
Based on https://github.com/Language-Research-Technology/ro-crate-html-js | ||
copied from https://unpkg.com/[email protected]/dist/ro-crate-dynamic.js (resolved https://unpkg.com/ro-crate-html-js/dist/ro-crate-dynamic.js) with added call to load() function at the line 135 | ||
copied from https://unpkg.com/[email protected]/dist/ro-crate-dynamic.js (resolved https://unpkg.com/ro-crate-html-js/dist/ro-crate-dynamic.js) | ||
Changes from original: | ||
- added call to load() function at the line 139 | ||
- removed download link for the files, as it does not work in the context of the Dataverse previewer (line 427) | ||
- removed image and pdf previewers, as it does not work in the context of the Dataverse previewer (line 491) | ||
*/ | ||
|
||
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){ | ||
|
@@ -420,9 +424,9 @@ copied from https://unpkg.com/[email protected]/dist/ro-crate-dynamic.js ( | |
} | ||
} | ||
} | ||
} else if ( types.includes("File") || types.includes("ImageObject") || types.includes("MediaObject") || path === "ro-crate-metadata.jsonld"){ | ||
//view = "⬇️ Download: "; | ||
} | ||
} /*else if ( types.includes("File") || types.includes("ImageObject") || types.includes("MediaObject") || path === "ro-crate-metadata.jsonld"){ | ||
view = "⬇️ Download: "; | ||
} */ | ||
if (view){ | ||
idLink += `<a href="${path}">${view}</a>`; | ||
} | ||
|