Improved www.ttss.krakow.pl
Jacek Kowalski
2016-12-06 75d3f64632e9e94c0457c13e4ec9dc75bf7fd639
Make add*WithText functions return the element added
1 files modified
4 ■■■■ changed files
index.js 4 ●●●● patch | view | raw | blame | history
index.js
@@ -88,11 +88,11 @@
}
function addCellWithText(parent, text) {
    addElementWithText(parent, 'td', text);
    return addElementWithText(parent, 'td', text);
}
function addParaWithText(parent, text) {
    addElementWithText(parent, 'p', text);
    return addElementWithText(parent, 'p', text);
}
function setText(element, text) {