corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 define( function() {
2  
3 "use strict";
4  
5 // We have to close these tags to support XHTML (#13200)
6 var wrapMap = {
7  
8 // Support: IE <=9 only
9 option: [ 1, "<select multiple='multiple'>", "</select>" ],
10  
11 // XHTML parsers do not magically insert elements in the
12 // same way that tag soup parsers do. So we cannot shorten
13 // this by omitting <tbody> or other required elements.
14 thead: [ 1, "<table>", "</table>" ],
15 col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
16 tr: [ 2, "<table><tbody>", "</tbody></table>" ],
17 td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
18  
19 _default: [ 0, "", "" ]
20 };
21  
22 // Support: IE <=9 only
23 wrapMap.optgroup = wrapMap.option;
24  
25 wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
26 wrapMap.th = wrapMap.td;
27  
28 return wrapMap;
29 } );