mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-03-24 20:36:56 +00:00
Correct the name of the video parser
This commit is contained in:
parent
a1a4bf0f9d
commit
f143164cbe
@ -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;
|
||||
|
||||
})();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user