Skip to content

Commit 9f4ef20

Browse files
committed
Still fixing paths
1 parent 32e2262 commit 9f4ef20

File tree

134 files changed

+379
-379
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+379
-379
lines changed

client/behaviours/actionable/actionable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.8'
1+
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.9'
22

33
/**
44
* Allows the context menu to appear when the user clicks an element with an id

client/behaviours/animation/animation.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { parseTransform, number, handleTransformAsStyle } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.8'
2-
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.8'
1+
import { parseTransform, number, handleTransformAsStyle } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.9'
2+
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.9'
33

44
/**
55
* Somehow, someday, make these extensible

client/behaviours/containers/child/containers-child.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { hasLastSelected, createUniqueId } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.8'
2-
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.8'
1+
import { hasLastSelected, createUniqueId } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.9'
2+
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.9'
33

44

55
function defaultChildSelector() {

client/behaviours/containers/contain/containers-contain.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { hasLastSelected, createUniqueId, getParentElement, getNextSiblingId, getParentElements } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.8'
2-
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.8'
3-
import { getBeforeId } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.8'
1+
import { hasLastSelected, createUniqueId, getParentElement, getNextSiblingId, getParentElements } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.9'
2+
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.9'
3+
import { getBeforeId } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.9'
44

55

66
function defaultContainSelector() {
@@ -98,7 +98,7 @@ export function initContainContextMenuCallback(palette, containment, selector) {
9898
const parentElements = getParentElements(selectedElements);
9999

100100
if (containment.canInsert(parentElements, selectedElements)) {
101-
contextMenu.addControl(event, "/public/behaviours/containers/contain/contain.svg", "Contain",
101+
contextMenu.addControl(event, "/github/kite9-org/kite9/client/behaviours/containers/contain/contain.svg", "Contain",
102102
function(e2) {
103103
contextMenu.destroy();
104104
palette.open(

client/behaviours/containers/drag/containers-drag.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { getSVGCoords, getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.8'
2-
import { handleTransformAsStyle, getKite9Target, getParentElement, getNextSiblingId, onlyUnique, isLink, isConnected } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.8'
3-
import { getBeforeId } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.8'
1+
import { getSVGCoords, getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.9'
2+
import { handleTransformAsStyle, getKite9Target, getParentElement, getNextSiblingId, onlyUnique, isLink, isConnected } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.9'
3+
import { getBeforeId } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.9'
44

55
export function initContainerDropLocatorFunction(containment) {
66

client/behaviours/containers/insert/containers-insert.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { hasLastSelected, getKite9Target, createUniqueId, changeId } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.8'
2-
import { getMainSvg, getSVGCoords, getElementPageBBox, currentTarget } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.8'
3-
import { getBefore } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.8'
1+
import { hasLastSelected, getKite9Target, createUniqueId, changeId } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.9'
2+
import { getMainSvg, getSVGCoords, getElementPageBBox, currentTarget } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.9'
3+
import { getBefore } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.9'
44

55

66
function defaultInsertSelector() {
@@ -129,7 +129,7 @@ export function initInsertContextMenuCallback(palette, containment, selector) {
129129
const allowed = containment.canInsert(selectedElements);
130130
if (allowed) {
131131
// console.log("Allowing insert with types: "+allowedTypes);
132-
contextMenu.addControl(event, "/public/behaviours/containers/insert/insert.svg", "Insert",
132+
contextMenu.addControl(event, "/github/kite9-org/kite9/client/behaviours/containers/insert/insert.svg", "Insert",
133133
function(e2, selector) {
134134
contextMenu.destroy();
135135
// primes this based on the screen.

client/behaviours/containers/layout/containers-layout.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { hasLastSelected, isConnected, parseInfo } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.8'
2-
import { getSVGCoords, getElementPageBBox, getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.8'
3-
import { drawBar, clearBar } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.8'
1+
import { hasLastSelected, isConnected, parseInfo } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.9'
2+
import { getSVGCoords, getElementPageBBox, getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.9'
3+
import { drawBar, clearBar } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.9'
44

55
function getLayout(e) {
66
if (e==null) {
@@ -17,7 +17,7 @@ function drawLayout(event, cm, layout, selected) {
1717
layout = "none";
1818
}
1919

20-
var out = cm.addControl(event, "/public/behaviours/containers/layout/" + layout.toLowerCase() + ".svg",
20+
var out = cm.addControl(event, "/github/kite9-org/kite9/client/behaviours/containers/layout/" + layout.toLowerCase() + ".svg",
2121
"Layout (" + layout + ")",
2222
undefined);
2323

client/behaviours/containers/rules/containers-rules.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { isGrid } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.8'
1+
import { isGrid } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.9'
22
/**
33
* Three attributes:
44
*

client/behaviours/dragable/dragable.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { getSVGCoords, getMainSvg, is_touch_device4 } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.8'
2-
import { handleTransformAsStyle, getKite9Target, isConnected, isDiagram, getParentElement, onlyUnique } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.8'
3-
import { getBeforeId } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.8'
1+
import { getSVGCoords, getMainSvg, is_touch_device4 } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.9'
2+
import { handleTransformAsStyle, getKite9Target, isConnected, isDiagram, getParentElement, onlyUnique } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.9'
3+
import { getBeforeId } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.9'
44

55
export function initDragable(dragger, selector) {
66

client/behaviours/editable/image/editable-image.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { hasLastSelected} from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.8'
2-
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.8'
3-
import { icon, form, text, p, inlineButtons, ok, cancel, formValues, img, fieldset, div } from '/github/kite9-org/kite9/client/bundles/form.js?v=v0.8'
1+
import { hasLastSelected} from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.9'
2+
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.9'
3+
import { icon, form, text, p, inlineButtons, ok, cancel, formValues, img, fieldset, div } from '/github/kite9-org/kite9/client/bundles/form.js?v=v0.9'
44

5-
const LOADING = '/public/behaviours/editable/image/loading.svg';
6-
const SUCCESS = '/public/behaviours/editable/image/success.svg';
7-
const FAIL = '/public/behaviours/editable/image/fail.svg';
5+
const LOADING = '/github/kite9-org/kite9/client/behaviours/editable/image/loading.svg';
6+
const SUCCESS = '/github/kite9-org/kite9/client/behaviours/editable/image/success.svg';
7+
const FAIL = '/github/kite9-org/kite9/client/behaviours/editable/image/fail.svg';
88

99
export function initEditableImageContextMenuCallback(command, metadata, selector) {
1010

@@ -87,7 +87,7 @@ export function initEditableImageContextMenuCallback(command, metadata, selector
8787

8888
if (elements.length> 0) {
8989
const last = hasLastSelected(elements, true);
90-
contextMenu.addControl(event, "/public/behaviours/editable/image/edit.svg", 'Edit Image', () => {
90+
contextMenu.addControl(event, "/github/kite9-org/kite9/client/behaviours/editable/image/edit.svg", 'Edit Image', () => {
9191
const href = last.getAttribute("href");
9292

9393
contextMenu.clear();

0 commit comments

Comments
 (0)