Skip to content

Commit

Permalink
Fixed table default markup.
Browse files Browse the repository at this point in the history
  • Loading branch information
icc committed Apr 18, 2013
1 parent f2b8e06 commit 0d95d6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var H5P = H5P || {};
* @param {string} contentPath The path to our content folder.
*/
H5P.Table = function (params, contentPath) {
this.text = params.text === undefined ? '<table><tr><th>New</td><td></td></tr><tr><td></td><td>table</td></tr></table>' : params.text;
this.text = params.text === undefined ? '<table><tr><th>New</th><td></td></tr><tr><td></td><td>table</td></tr></table>' : params.text;
};

/**
Expand Down

0 comments on commit 0d95d6c

Please sign in to comment.