Browse Source

Merge pull request #166 from samayo/patch-1

fix warning message not to show up in the source code preview
master
Jack Lukic 9 years ago
parent
commit
8583ad8e35
  1. 2
      server/documents/collections/table.html.eco

2
server/documents/collections/table.html.eco

@ -1742,7 +1742,7 @@ themes : ['Default', 'Basic', 'Classic', 'GitHub']
<h4 class="ui header">Sortable</h4> <h4 class="ui header">Sortable</h4>
<p>A table may allow a user to sort contents by clicking on a table header.</p> <p>A table may allow a user to sort contents by clicking on a table header.</p>
<div class="ui warning message">Adding a classname of <code>ascending</code> or <code>descending</code> to the <code>th</code> will show the user the direction of sort. This example uses a modified version of the kylefox's <a href="https://github.com/kylefox/jquery-tablesort">tablesort plugin</a> to provide the proper class names. To make sortable tables work, include <a href="http://semantic-ui.com/javascript/library/tablesort.js">this javascript</a> into your page and call <code>$('table').tablesort()</code> when DOM is ready. <div class="ui ignored warning message">Adding a classname of <code>ascending</code> or <code>descending</code> to the <code>th</code> will show the user the direction of sort. This example uses a modified version of the kylefox's <a href="https://github.com/kylefox/jquery-tablesort">tablesort plugin</a> to provide the proper class names. To make sortable tables work, include <a href="http://semantic-ui.com/javascript/library/tablesort.js">this javascript</a> into your page and call <code>$('table').tablesort()</code> when DOM is ready.
</div> </div>
<table class="ui sortable celled table"> <table class="ui sortable celled table">

Loading…
Cancel
Save