Rev | Line | |
---|
[6287] | 1 | /*!
|
---|
| 2 | Styling for heuristiclab via jQuery
|
---|
| 3 | */
|
---|
| 4 |
|
---|
| 5 | $(document).ready(
|
---|
| 6 |
|
---|
| 7 | function () {
|
---|
| 8 |
|
---|
| 9 |
|
---|
| 10 |
|
---|
| 11 | $('.hl-dataTable').dataTable(
|
---|
| 12 | {
|
---|
| 13 | "bJQueryUI": true
|
---|
| 14 | }
|
---|
| 15 |
|
---|
| 16 | );
|
---|
| 17 | $(".hl-dataTable").addClass("display");
|
---|
| 18 |
|
---|
| 19 | $(".hl-button-text-plus").button({ icons: { primary: 'ui-icon-plus'} });
|
---|
| 20 | $(".hl-icon-delete").button({ icons: { primary: 'ui-icon-close' }, text: false });
|
---|
| 21 | $(".hl-icon-edit").button({ icons: { primary: 'ui-icon-pencil' }, text: false });
|
---|
| 22 |
|
---|
| 23 |
|
---|
| 24 | $(".hl-button").hover(
|
---|
| 25 | function () {
|
---|
| 26 | $(this).fadeOut(100);
|
---|
| 27 | $(this).fadeIn(100);
|
---|
| 28 | }
|
---|
| 29 | );
|
---|
| 30 |
|
---|
| 31 | }
|
---|
| 32 | );
|
---|
| 33 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.