diff --git a/examples/Components/Routes/Collaboration/index.vue b/examples/Components/Routes/Collaboration/index.vue
index 0d7620eb..c3d84fa0 100644
--- a/examples/Components/Routes/Collaboration/index.vue
+++ b/examples/Components/Routes/Collaboration/index.vue
@@ -5,6 +5,8 @@
diff --git a/examples/Components/Routes/Collaboration3/Collab.js b/examples/Components/Routes/Collaboration3/Collab.js
deleted file mode 100644
index 21dc7255..00000000
--- a/examples/Components/Routes/Collaboration3/Collab.js
+++ /dev/null
@@ -1,24 +0,0 @@
-import { Extension } from 'tiptap'
-import { collab } from 'prosemirror-collab'
-
-export default class CollabExtension extends Extension {
- get name() {
- return 'collab'
- }
-
- get defaultOptions() {
- return {
- version: 0,
- clientID: Math.floor(Math.random() * 0xFFFFFFFF),
- }
- }
-
- get plugins() {
- return [
- collab({
- version: this.options.version,
- clientID: this.options.clientID,
- }),
- ]
- }
-}
diff --git a/examples/Components/Routes/Collaboration3/index.vue b/examples/Components/Routes/Collaboration3/index.vue
deleted file mode 100644
index 6301f756..00000000
--- a/examples/Components/Routes/Collaboration3/index.vue
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
-
-
-
-
-
diff --git a/examples/Components/Subnavigation/index.vue b/examples/Components/Subnavigation/index.vue
index 1ff9f905..c4c3b796 100644
--- a/examples/Components/Subnavigation/index.vue
+++ b/examples/Components/Subnavigation/index.vue
@@ -51,12 +51,6 @@
Collaboration
-
- Collaboration 2
-
-
- Collaboration 3
-
diff --git a/examples/main.js b/examples/main.js
index cd124936..3102cc93 100644
--- a/examples/main.js
+++ b/examples/main.js
@@ -131,20 +131,6 @@ const routes = [
githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/Collaboration',
},
},
- {
- path: '/collaboration2',
- component: () => import('Components/Routes/Collaboration2'),
- meta: {
- githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/Collaboration2',
- },
- },
- {
- path: '/collaboration3',
- component: () => import('Components/Routes/Collaboration3'),
- meta: {
- githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/Collaboration3',
- },
- },
]
const router = new VueRouter({