Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Molstar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michal Malý
Molstar
Commits
104ab757
Commit
104ab757
authored
2 years ago
by
dsehnal
Browse files
Options
Downloads
Patches
Plain Diff
Update fs import in data-source.ts
parent
de84a8c8
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+6
-3
6 additions, 3 deletions
CHANGELOG.md
src/mol-util/data-source.ts
+2
-1
2 additions, 1 deletion
src/mol-util/data-source.ts
with
8 additions
and
4 deletions
CHANGELOG.md
+
6
−
3
View file @
104ab757
...
...
@@ -6,9 +6,12 @@ Note that since we don't clearly distinguish between a public and private interf
## [Unreleased]
Fix impostor bond visuals not correctly updating on
`sizeFactor`
changes
Fix degenerate case in PCA
Fix near clipping avoidance in impostor shaders
## [v3.31.3] - 2023-02-22
-
Fix impostor bond visuals not correctly updating on
`sizeFactor`
changes
-
Fix degenerate case in PCA
-
Fix near clipping avoidance in impostor shaders
-
Update
`fs`
import in
`data-source.ts`
## [v3.31.2] - 2023-02-12
...
...
This diff is collapsed.
Click to expand it.
src/mol-util/data-source.ts
+
2
−
1
View file @
104ab757
...
...
@@ -305,7 +305,8 @@ function ajaxGetInternal<T extends DataType>(title: string | undefined, url: str
let
_fs
:
(
typeof
import
(
'
fs
'
))
|
undefined
=
undefined
;
function
getFS
()
{
if
(
_fs
)
return
_fs
!
;
_fs
=
require
(
'
fs
'
);
const
req
=
require
;
// To fool webpack
_fs
=
req
(
'
fs
'
);
return
_fs
!
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment