mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-12-08 17:58:05 +00:00
Correct the name of the video parser
This commit is contained in:
@@ -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;
|
||||
|
||||
})();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user