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

fix some broken link #123

Merged
merged 2 commits into from
Jan 3, 2025
Merged
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
16 changes: 8 additions & 8 deletions packages/ove/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Congrats, you've made it to the repo for Teselagen's Open Source Vector Editor C
- [Full Example:](#full-example)
- [Code (Universal)](#code-universal)
- [Accessing the editor state:](#accessing-the-editor-state)
- [Demo (Universal): http://teselagen.github.io/openVectorEditor/](#demo-universal-httpteselagengithubioopenvectoreditor)
- [Demo (Universal): https://teselagen.github.io/tg-oss/ove/](#demo-universal-httpsteselagengithubiotg-ossove)
- [editorProps](#editorprops)
- [editorState](#editorstate)
- [Setting Local Storage Persisted Values](#setting-local-storage-persisted-values)
Expand Down Expand Up @@ -86,7 +86,7 @@ Congrats, you've made it to the repo for Teselagen's Open Source Vector Editor C
This repo follows semantic versioning (major/minor/patche)

The commit log can be seen here:
https://github.com/TeselaGen/openVectorEditor/commits/master
https://github.com/TeselaGen/tg-oss/commits/master/packages/ove

Upgrade instructions for any major or minor change can be found here:
[Upgrade instructions](UPGRADE_INSTRUCTIONS.md)
Expand Down Expand Up @@ -178,7 +178,7 @@ then add the links

```html
<link rel="stylesheet" type="text/css" href="your-path-to-node-modules/@teselagen/ove/umd/style.css" />
<script type="text/javascript" src="your-path-to-node-modules/@teselagen/ove/index.umd.js.js"></script>
<script type="text/javascript" src="your-path-to-node-modules/@teselagen/ove/index.umd.js"></script>
```

### Or via CDN:
Expand All @@ -190,8 +190,8 @@ then add the links

### Full Example:

A full example of how to set up the unpkg/UMD demo can be seen here: https://github.com/TeselaGen/openVectorEditor/blob/master/demo/public/UMDDemo.html
Demo here http://teselagen.github.io/openVectorEditor/UMDDemo.html
A full example of how to set up the unpkg/UMD demo can be seen here: https://github.com/TeselaGen/tg-oss/blob/master/packages/ove/public/UMDDemo.html
Demo here https://teselagen.github.io/tg-oss/ove/UMDDemo.html

## Code (Universal)

Expand All @@ -210,7 +210,7 @@ const currentEditorState = editor.getState();
console.info(currentEditorState.selectionLayer);
```

## Demo (Universal): http://teselagen.github.io/openVectorEditor/
## Demo (Universal): https://teselagen.github.io/tg-oss/ove/

# editorProps

Expand Down Expand Up @@ -434,7 +434,7 @@ They look like this:
# Protein Editor

OVE can be set up to view and edit proteins (Amino Acid sequences) as first class citizens.
The protein editor can be seen here: http://teselagen.github.io/openVectorEditor/#/Editor?moleculeType=Protein
The protein editor can be seen here: https://teselagen.github.io/tg-oss/ove/#/Editor?moleculeType=Protein

The editor supports Amino Acid sequences as well as DNA sequences!
Protein sequence mode is enabled by calling updateEditor with a protein sequenceData object:
Expand Down Expand Up @@ -675,7 +675,7 @@ window.createVectorEditor({

## Auto annotate addon:

https://github.com/TeselaGen/openVectorEditor/tree/master/addons/AutoAnnotate
https://github.com/TeselaGen/tg-oss/blob/master/packages/ove/src/AutoAnnotate.js

# Implementing Autosave functionality

Expand Down
Loading