@@ -17,7 +17,7 @@ function render(node, docConfig){
17
17
var demoDiv = document . createElement ( "div" ) ;
18
18
demoDiv . className = "demo" ;
19
19
demoDiv . innerHTML = template ;
20
- var demoSrc = ( docConfig . demoSrcRoot || ".." ) + "/" + node . dataset . demoSrc ;
20
+ var demoSrc = ( docConfig . demoSrcRoot || ".." ) + "/" + ( node . dataset ? node . dataset . demoSrc : node . getAttribute ( "data-demo-src" ) ) ;
21
21
demoDiv . getElementsByTagName ( "iframe" ) [ 0 ] . src = demoSrc ;
22
22
23
23
node . innerHTML = "" ;
@@ -55,7 +55,7 @@ module.exports = function(node){
55
55
56
56
function getHTML ( demoEl ) {
57
57
var html = demoEl ? demoEl . innerHTML : this . contentWindow . DEMO_HTML ;
58
-
58
+
59
59
if ( ! html ) {
60
60
// try to make from body
61
61
var clonedBody = this . contentDocument . body . cloneNode ( true ) ;
@@ -109,12 +109,22 @@ module.exports = function(node){
109
109
110
110
function toggle ( tabName ) {
111
111
each ( ".tab" , function ( el ) {
112
- el . classList . remove ( "active" ) ;
112
+ if ( el . classList ) {
113
+ el . classList . remove ( "active" ) ;
114
+ } else {
115
+ el . className = "tab" ;
116
+ }
117
+
113
118
} ) ;
114
119
115
120
each ( ".tab-content" , hide ) ;
116
121
each ( ".tab[data-tab='" + tabName + "']" , function ( el ) {
117
- el . classList . add ( "active" ) ;
122
+ if ( el . classList ) {
123
+ el . classList . add ( "active" ) ;
124
+ } else {
125
+ el . className = "tab active" ;
126
+ }
127
+
118
128
} ) ;
119
129
each ( "[data-for='" + tabName + "']" , show ) ;
120
130
}
0 commit comments