Skip to content

Commit

Permalink
For making fixing Issue #376 Complete. Rewrite example '<p />' also w…
Browse files Browse the repository at this point in the history
…ith syntax <p></p>'
  • Loading branch information
illuusio committed Jun 25, 2020
1 parent f8e6be0 commit 4154b4f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/dynamic_content.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
function()
{
api.getContentPane().append(
$('<p />').text('This is paragraph number ' + i++)
$('<p></p>').text('This is paragraph number ' + i++)
);
// we could call "pane.jScrollPane(settings)" again but it is
// more convenient to call via the API as then the original
Expand Down Expand Up @@ -92,4 +92,4 @@ <h2>Page CSS</h2>
</div>
</div>
</body>
</html>
</html>
4 changes: 2 additions & 2 deletions examples/resize_sensor.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
function()
{
contentPane.append(
$('<p />').text('This is paragraph number ' + i++)
$('<p></p>').text('This is paragraph number ' + i++)
);
},
1000
Expand Down Expand Up @@ -91,4 +91,4 @@ <h2>Page CSS</h2>
</div>
</div>
</body>
</html>
</html>

0 comments on commit 4154b4f

Please sign in to comment.