Skip to content

Commit 39ea2e7

Browse files
committed
cleanup
1 parent 1d1dcb5 commit 39ea2e7

File tree

4 files changed

+0
-152
lines changed

4 files changed

+0
-152
lines changed

src/core/ScriptRun.js

Lines changed: 0 additions & 60 deletions
This file was deleted.

src/index.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import { add as addBlock, blocks } from './blocks/types.js'
88

99
import { Splash } from './core/Splash.js'
1010
import { Container } from './core/Container.js'
11-
import { ScriptRun } from './core/ScriptRun'
1211

1312
import utils from './utils'
1413
import defaults from './utils/defaults'
@@ -43,15 +42,13 @@ const Presenta = function (el, config) {
4342
const splash = new Splash(root, config)
4443

4544
return new Promise((resolve, reject) => {
46-
// new ScriptRun(config).then(() => {
4745
new Install(config.plugins).then(() => {
4846
const all = pluginsInit(config)
4947
Promise.all(all).then(values => {
5048
resolve(new Container(root, config))
5149
splash.destroy()
5250
})
5351
})
54-
// })
5552
})
5653
}
5754

src/modules/script/index.js

Lines changed: 0 additions & 87 deletions
This file was deleted.

src/modules/types.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import coords from './coords'
1010
import reveal from './reveal'
1111
import link from './link'
1212
import enters from './enters'
13-
import script from './script'
1413
import showif from './showif'
1514
import hidden from './hidden'
1615

@@ -26,7 +25,6 @@ const modules = {
2625
autoplay,
2726
reveal,
2827
enters,
29-
script,
3028
link,
3129
showif,
3230
hidden

0 commit comments

Comments
 (0)