Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

$mol_view added #135

Merged
merged 3 commits into from
Jul 11, 2024
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 added icons/mol.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions library/libraries.js
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,20 @@ var d41d8cd98f00b204e9800998ecf8427e_LibraryDetectorTests = {
}
},

'$mol_view': {
johnmichel marked this conversation as resolved.
Show resolved Hide resolved
icon: 'mol',
url: 'http://mol.js.org/',
test: function(win) {
if (win.$mol_view) {
johnmichel marked this conversation as resolved.
Show resolved Hide resolved
return { version: UNKNOWN_VERSION };
}
if (win.document.querySelector('mol_view')) {
return { version: UNKNOWN_VERSION };
}
return false;
}
},

'Processing.js': {
icon: 'processingjs',
url: 'http://processingjs.org',
Expand Down