Skip to content

Commit

Permalink
3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
epf committed Dec 8, 2017
1 parent f770025 commit 86acc4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Projects/SealWebServer/Scripts/common.js
Expand Up @@ -116,7 +116,7 @@ function initButtons() {
$("#body_div").animate({ scrollTop: 0 }, "slow");
});

$("#nav_button").button({ text: false, label: ">", icons: { primary: "ui-icon-arrow-2-n-s" } })
$("#nav_button").button({ text: false, label: ">", icons: { primary: "ui-icon-triangle-2-n-s" } })
.mouseenter(function () {
$("#nav_menu").empty();
if ($("#nav_button").attr("disabled") == "disabled") return;
Expand Down
2 changes: 1 addition & 1 deletion Repository/Views/Model.cshtml
Expand Up @@ -236,7 +236,7 @@
{
bool dataTitleHeader = true;
<div class='data_table_div' style='@View.GetCSS("data_table")'>
<table class='data_table' id="@View.ViewId@page.PageId" viewid="@View.ViewId" pageid="@page.PageId" style='@View.GetCSS("data_table_table")'>
<table class='data_table' id="@("dt"+page.PageId)" viewid="@View.ViewId" pageid="@page.PageId" style='@View.GetCSS("data_table_table")'>
@if (View.HasValue("data_table_caption"))
{
<caption align="bottom" style="caption-side: bottom;">@Raw(View.GetHtmlValue("data_table_caption"))</caption>
Expand Down
2 changes: 1 addition & 1 deletion Repository/Views/Scripts/common.js
Expand Up @@ -116,7 +116,7 @@ function initButtons() {
$("#body_div").animate({ scrollTop: 0 }, "slow");
});

$("#nav_button").button({ text: false, label: ">", icons: { primary: "ui-icon-arrow-2-n-s" } })
$("#nav_button").button({ text: false, label: ">", icons: { primary: "ui-icon-triangle-2-n-s" } })
.mouseenter(function () {
$("#nav_menu").empty();
if ($("#nav_button").attr("disabled") == "disabled") return;
Expand Down

0 comments on commit 86acc4c

Please sign in to comment.