1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-16 02:19:55 +00:00

Correct the name of the video parser

This commit is contained in:
Jermolene 2016-12-22 22:07:28 +00:00
parent a1a4bf0f9d
commit f143164cbe

View File

@ -12,7 +12,7 @@ The video parser parses a video tiddler into an embeddable HTML element
/*global $tw: false */
"use strict";
var AudioParser = function(type,text,options) {
var VideoParser = function(type,text,options) {
var element = {
type: "element",
tag: "video",
@ -29,7 +29,7 @@ var AudioParser = function(type,text,options) {
this.tree = [element];
};
exports["video/mp4"] = AudioParser;
exports["video/mp4"] = VideoParser;
})();