Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit 8ea9cec

Browse files
committed
Warn that short URIs are not persistent
1 parent c71ead7 commit 8ea9cec

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

src/main/web/app/Ui.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ export default class Ui {
2323
Ui.displayUrl();
2424
}
2525
});
26+
Ui.urlType.find("[data-value='short']").popup({
27+
on: "click",
28+
target: Ui.urlType
29+
});
2630
Ui.ontologyText.click(() => Ui.ontologyText.select());
2731
}
2832

src/main/web/app/assets/index.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ <h1 class="ui header page">
5656
<div class="ui doubling stackable grid">
5757
<div class="four wide column">
5858
<div id="format-dropdown" class="ui loading fluid selection dropdown">
59-
<input type="hidden" name="gender">
6059
<i class="dropdown icon"></i>
6160

6261
<div class="default text">Ontology Syntax</div>
@@ -75,7 +74,7 @@ <h1 class="ui header page">
7574

7675
<div class="menu">
7776
<div class="item" data-value="long">Long URI</div>
78-
<div class="item" data-value="short">Short URI</div>
77+
<div class="item" data-value="short" data-content="Short URIs are NOT persistent but might be reset from time to time.">Short URI</div>
7978
</div>
8079
</div>
8180
</div>

0 commit comments

Comments
 (0)