Content deleted Content added
Mike Dillon (talk | contribs) m add "style" tag to HTML defaults |
Mike Dillon (talk | contribs) No edit summary |
||
Line 17:
// Default tag names to be installed into the namespace as functions
var defaultTagNames = [
"
"pre", "a", "div", "span", "ul", "ol", "li", "img", "hr", "br", "em", "strong",
"
"code", "table", "tbody", "tfoot", "tr", "th", "td", "col", "colgroup", "caption",
▲ "em", "strong", "sup", "sub", "tt", "abbr", "acronym",
▲ "table", "tbody", "tfoot", "tr", "th", "td", "col", "colgroup", "caption",
"form", "input", "select", "option", "optgroup", "button", "textarea",
"h1", "h2", "h3", "h4", "h5", "h6", "label", "canvas"
];
Line 52 ⟶ 39:
// Settings
var settings = {
invokeFunctions: true,
▲ "eventTypes": defaultEventTypes
};
Line 70 ⟶ 54:
// Creates the DOM element
var createDomElement = function(name) {
};
|