1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-25 06:43:15 +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 */ /*global $tw: false */
"use strict"; "use strict";
var AudioParser = function(type,text,options) { var VideoParser = function(type,text,options) {
var element = { var element = {
type: "element", type: "element",
tag: "video", tag: "video",
@ -29,7 +29,7 @@ var AudioParser = function(type,text,options) {
this.tree = [element]; this.tree = [element];
}; };
exports["video/mp4"] = AudioParser; exports["video/mp4"] = VideoParser;
})(); })();