Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Content/HLStyling.js @ 6287

Last change on this file since 6287 was 6287, checked in by dkahn, 14 years ago

#1198 Added styling js

File size: 592 bytes
Line 
1/*!
2Styling for heuristiclab via jQuery
3*/
4
5$(document).ready(
6
7function () {
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.