mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
vdom improvements
This commit is contained in:
parent
cbd0b37ef2
commit
02176baf0a
@ -51,21 +51,23 @@ function requireResolve(builder, path) {
|
||||
}
|
||||
|
||||
const helpers = {
|
||||
'attr': 'a',
|
||||
'attrs': 'as',
|
||||
'classAttr': 'ca',
|
||||
'classList': 'cl',
|
||||
'createElement': 'e',
|
||||
'escapeXml': 'x',
|
||||
'escapeXmlAttr': 'xa',
|
||||
'escapeScript': 'xs',
|
||||
'str': 's',
|
||||
'merge': 'm',
|
||||
'classAttr': 'ca',
|
||||
'styleAttr': 'sa',
|
||||
'attr': 'a',
|
||||
'attrs': 'as',
|
||||
'loadTag': 't',
|
||||
'forEachWithStatusVar': 'fv',
|
||||
'forEach': 'f',
|
||||
'forEachProp': 'fp',
|
||||
'classList': 'cl',
|
||||
'loadTemplate': 'l'
|
||||
'forEachWithStatusVar': 'fv',
|
||||
'loadTag': 't',
|
||||
'loadTemplate': 'l',
|
||||
'merge': 'm',
|
||||
'str': 's',
|
||||
'styleAttr': 'sa',
|
||||
'createText': 't'
|
||||
};
|
||||
|
||||
class CompileContext extends EventEmitter {
|
||||
|
||||
24
runtime/vdom/helpers.js
Normal file
24
runtime/vdom/helpers.js
Normal file
@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Copyright 2011 eBay Software Foundation
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
var markoVDOM = require('marko-vdom');
|
||||
|
||||
module.exports = {
|
||||
e: markoVDOM.createElement,
|
||||
t: markoVDOM.createText,
|
||||
};
|
||||
0
runtime/vdom/index.js
Normal file
0
runtime/vdom/index.js
Normal file
Loading…
x
Reference in New Issue
Block a user