diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-01-07 18:39:36 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-01-07 18:39:36 -0800 |
commit | fab7a03b6c345ccd9fec66adb08a45206557c306 (patch) | |
tree | ea9f92263485a742ea66de7d05fc19e86b525e3d /ext/fg/js/frame.js | |
parent | dc4162eeed14d958c65d63b2568fce58890e14e3 (diff) |
WIP
Diffstat (limited to 'ext/fg/js/frame.js')
-rw-r--r-- | ext/fg/js/frame.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/fg/js/frame.js b/ext/fg/js/frame.js index 4a086abb..95762d5e 100644 --- a/ext/fg/js/frame.js +++ b/ext/fg/js/frame.js @@ -16,7 +16,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -class FrameContext { +class Frame { constructor() { this.definitions = []; this.audioCache = {}; @@ -156,4 +156,4 @@ class FrameContext { } } -window.frameContext = new FrameContext(); +window.frame = new Frame(); |