- add '.gitea/workflows/build.yaml'
- npm updates - add map tool for drawing rectangles
This commit is contained in:
parent
a744ae7e5b
commit
12b02a0d7d
6 changed files with 302 additions and 136 deletions
12
resources/js/Components/Map/utilities.ts
Normal file
12
resources/js/Components/Map/utilities.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
// extend an object with properties of one or more other objects
|
||||
export function extend(dest) {
|
||||
var i, j, len, src;
|
||||
|
||||
for (j = 1, len = arguments.length; j < len; j++) {
|
||||
src = arguments[j];
|
||||
for (i in src) {
|
||||
dest[i] = src[i];
|
||||
}
|
||||
}
|
||||
return dest;
|
||||
}
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue