Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified docs/imgs/manifest-create.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 7 additions & 2 deletions docs/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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); }
Expand Down Expand Up @@ -9410,6 +9410,11 @@ var App = /*#__PURE__*/function () {
app: '<pre>'
}, args));
});
$('table').each(function (i) {
if (!$(this).parent().hasClass('c-table--scrollable')) {
$(this).wrap('<div class="c-table c-table--scrollable"></div>');
}
});
}
}, {
key: "applyTheme",
Expand Down Expand Up @@ -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({
Expand All @@ -10467,7 +10473,6 @@ function ZIndex(source) {
for (var app in apps) {
_loop(app);
}
App.applyStyles(args);
} catch (e) {
console.error(e);
}
Expand Down
2 changes: 1 addition & 1 deletion docs/libraries/clt/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.<br>
![Creating manifest](../../imgs/manifest-create.png){: .clt-img.w-fixed }

Expand Down
5 changes: 5 additions & 0 deletions src/js/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,11 @@ class App {
new Pre(this, {app: '<pre>', ...args})
})

$('table').each(function( i ) {
if (!$(this).parent().hasClass('c-table--scrollable')) {
$(this).wrap('<div class="c-table c-table--scrollable"></div>')
}
})

}

Expand Down
2 changes: 1 addition & 1 deletion src/js/ZIndex.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ 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}]`)
.forEach((el) => {
new apps[app](el, { app, ...args })
})
}
App.applyStyles(args)
} catch (e) {
console.error(e)
}
Expand Down