summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoranonymous2022-10-10 16:43:00 -0400
committeranonymous2022-10-10 16:43:00 -0400
commit271fcc870a12ffeedd05dab67be5bd30be1c425d (patch)
treeeb3a03257856b30650c385757db128a8a9bbad63
parentac9eddd1d55cb18d2b0d7f87d8f1a1ee1dd30e2f (diff)
parentaefc3f8895e465efab59421c027622e50509d60a (diff)
added auth
-rw-r--r--README.md6
-rw-r--r--graffiti.js2
2 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index bf80fd5..06812e5 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,12 @@
# Graffiti for Vanilla Javascript
-This is the base Javascript library that interfaces with the [Graffiti server](https://github.com/digital-graffiti/server).
-We recommend not using this vanilla library itself but instead using framework plugins that are built on top of it like the [Graffiti plugin for Vue.JS](https://github.com/digital-graffiti/graffiti-x-vue).
+This is the base Javascript library that interfaces with the [Graffiti server](https://github.com/graffiti-garden/server).
+We recommend not using this vanilla library itself but instead using framework plugins that are built on top of it like the [Graffiti plugin for Vue.JS](https://github.com/graffiti-garden/graffiti-x-vue).
Example usage:
```javascript
-import Graffiti from "https://digital-graffiti.github.io/graffiti-x-js/graffiti.js"
+import Graffiti from "https://graffiti-garden.github.io/graffiti-x-js/graffiti.js"
// You can initialize a connection to the graffiti server
const graffiti = Graffiti()
diff --git a/graffiti.js b/graffiti.js
index 78bf028..5db4eff 100644
--- a/graffiti.js
+++ b/graffiti.js
@@ -2,7 +2,7 @@ import Auth from './auth.js'
export default class {
- constructor(graffitiURL="https://graffiti.csail.mit.edu") {
+ constructor(graffitiURL="https://graffiti.garden") {
this.graffitiURL = graffitiURL
this.open = false
this.subscriptionData = {}