Skip to content

Commit 7e4cda8

Browse files
committed
gets tests to pass in zombie and upgrades to use html-generate integration
1 parent 27bbcfe commit 7e4cda8

File tree

4 files changed

+20
-8
lines changed

4 files changed

+20
-8
lines changed

demo.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
var demoFrame = require("./demo_frame");
22

3-
var demos = [].slice.call(document.getElementsByClassName("demo_wrapper"));
4-
demos.forEach(demoFrame);
3+
module.exports = function(){
4+
var demos = [].slice.call(document.getElementsByClassName("demo_wrapper"));
5+
demos.forEach(demoFrame);
6+
};

demo_frame.js

+14-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function render(node, docConfig){
1717
var demoDiv = document.createElement("div");
1818
demoDiv.className = "demo";
1919
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"));
2121
demoDiv.getElementsByTagName("iframe")[0].src = demoSrc;
2222

2323
node.innerHTML = "";
@@ -55,7 +55,7 @@ module.exports = function(node){
5555

5656
function getHTML(demoEl) {
5757
var html = demoEl ? demoEl.innerHTML : this.contentWindow.DEMO_HTML;
58-
58+
5959
if(!html) {
6060
// try to make from body
6161
var clonedBody = this.contentDocument.body.cloneNode(true);
@@ -109,12 +109,22 @@ module.exports = function(node){
109109

110110
function toggle(tabName) {
111111
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+
113118
});
114119

115120
each(".tab-content", hide);
116121
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+
118128
});
119129
each("[data-for='" + tabName + "']", show);
120130
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"bit-docs-type-annotate": "^0.0.1"
3131
},
3232
"devDependencies": {
33-
"bit-docs-generate-html": "^0.0.3",
33+
"bit-docs-generate-html": "^0.2.0",
3434
"connect": "^2.14.4",
3535
"mocha": "^2.5.3",
3636
"zombie": "^4.2.1"

test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var open = function(url, callback, done){
4141
.then(function(){
4242
callback(browser, function(){
4343
server.close();
44-
})
44+
});
4545
}).catch(function(e){
4646
server.close();
4747
done(e)

0 commit comments

Comments
 (0)