diff --git a/docs/imgs/manifest-create.png b/docs/imgs/manifest-create.png index 30758b3..b696baa 100644 Binary files a/docs/imgs/manifest-create.png and b/docs/imgs/manifest-create.png differ diff --git a/docs/js/main.js b/docs/js/main.js index 63defaf..9a3c0e8 100644 --- a/docs/js/main.js +++ b/docs/js/main.js @@ -2,7 +2,7 @@ * sennetdocs - * @version v0.1.0 * @link https://docs.sennetconsortium.org/ - * @date Tue Dec 09 2025 10:23:50 GMT-0500 (Eastern Standard Time) + * @date Mon Jan 12 2026 10:37:01 GMT-0500 (Eastern Standard Time) */ var _this19 = this; function _wrapNativeSuper(Class) { var _cache = typeof Map === "function" ? new Map() : undefined; _wrapNativeSuper = function _wrapNativeSuper(Class) { if (Class === null || !_isNativeFunction(Class)) return Class; if (typeof Class !== "function") { throw new TypeError("Super expression must either be null or a function"); } if (typeof _cache !== "undefined") { if (_cache.has(Class)) return _cache.get(Class); _cache.set(Class, Wrapper); } function Wrapper() { return _construct(Class, arguments, _getPrototypeOf(this).constructor); } Wrapper.prototype = Object.create(Class.prototype, { constructor: { value: Wrapper, enumerable: false, writable: true, configurable: true } }); return _setPrototypeOf(Wrapper, Class); }; return _wrapNativeSuper(Class); } @@ -9410,6 +9410,11 @@ var App = /*#__PURE__*/function () { app: '
'
         }, args));
       });
+      $('table').each(function (i) {
+        if (!$(this).parent().hasClass('c-table--scrollable')) {
+          $(this).wrap('
'); + } + }); } }, { key: "applyTheme", @@ -10457,6 +10462,7 @@ function ZIndex(source) { }; args = args || window.apps.init; try { + App.applyStyles(args); var _loop = function _loop(app) { document.querySelectorAll("[class*='js-app--".concat(app, "'], [data-js-").concat(app, "]")).forEach(function (el) { new apps[app](el, _objectSpread({ @@ -10467,7 +10473,6 @@ function ZIndex(source) { for (var app in apps) { _loop(app); } - App.applyStyles(args); } catch (e) { console.error(e); } diff --git a/docs/libraries/clt/index.md b/docs/libraries/clt/index.md index dfb9d42..9b4f3cd 100644 --- a/docs/libraries/clt/index.md +++ b/docs/libraries/clt/index.md @@ -31,7 +31,7 @@ SNT378.HDGT.837 /extras #download the extras directory from dataset Manifest files can be created from the home page of the [Data Sharing Portal](https://data.sennetconsortium.org/search?size=n_10000_n&filters%5B0%5D%5Bfield%5D=entity_type&filters%5B0%5D%5Bvalues%5D%5B0%5D=Dataset&filters%5B0%5D%5Btype%5D=any&sort%5B0%5D%5Bfield%5D=last_modified_timestamp&sort%5B0%5D%5Bdirection%5D=desc) -when `Dataset` is selected as a filter. Select the checkboxes next to the datasets of interest and click the download icon +when `Dataset` is selected as a filter. Select the checkboxes next to the datasets of interest and then click the download actions button at the top left of the table.
![Creating manifest](../../imgs/manifest-create.png){: .clt-img.w-fixed } diff --git a/src/js/App.js b/src/js/App.js index 643826d..d85f07e 100644 --- a/src/js/App.js +++ b/src/js/App.js @@ -149,6 +149,11 @@ class App { new Pre(this, {app: '
', ...args})
         })
 
+        $('table').each(function( i ) {
+            if (!$(this).parent().hasClass('c-table--scrollable')) {
+                $(this).wrap('
') + } + }) } diff --git a/src/js/ZIndex.js b/src/js/ZIndex.js index e35518c..8540f55 100644 --- a/src/js/ZIndex.js +++ b/src/js/ZIndex.js @@ -27,6 +27,7 @@ function ZIndex(source, args = null) { args = args || window.apps.init try { + App.applyStyles(args) for (let app in apps) { document .querySelectorAll(`[class*='js-app--${app}'], [data-js-${app}]`) @@ -34,7 +35,6 @@ function ZIndex(source, args = null) { new apps[app](el, { app, ...args }) }) } - App.applyStyles(args) } catch (e) { console.error(e) }