Skip to content

Commit

Permalink
v28.1.33
Browse files Browse the repository at this point in the history
  • Loading branch information
SubathraKaliamoorthy committed Dec 30, 2024
1 parent c41baef commit 13f242d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 16 deletions.
5 changes: 2 additions & 3 deletions DiagramBuilder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@
<HintPath>packages\Newtonsoft.Json.13.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Syncfusion.EJ2">
<HintPath>packages\Syncfusion.EJ2.MVC4.26.1.35\lib\net40\Syncfusion.EJ2.dll</HintPath>
<HintPath>packages\Syncfusion.EJ2.MVC5.28.1.33\lib\net462\Syncfusion.EJ2.dll</HintPath>
</Reference>
<Reference Include="Syncfusion.Licensing">
<HintPath>packages\Syncfusion.Licensing.26.1.35\lib\net40\Syncfusion.Licensing.dll</HintPath>
<HintPath>packages\Syncfusion.Licensing.28.1.33\lib\net462\Syncfusion.Licensing.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
Expand Down Expand Up @@ -327,7 +327,6 @@
<Content Include="Content\assets\dbstyle\orgchart_images\OrgTemplateStyle1.json" />
<Content Include="Content\assets\dbstyle\orgchart_images\OrgTemplateStyle2.json" />
<Content Include="Content\assets\dbstyle\orgchart_images\OrgTemplateStyle3.json" />
<None Include="NuGet.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
Expand Down
4 changes: 0 additions & 4 deletions Scripts/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ var downloadFile;
var diagramThemes = new DiagramTheme(selectedItem);

window.onload = function () {
var hideLicense = document.getElementById("btnFileMenu-popup");
if (hideLicense) {
hideLicense.previousElementSibling.style.display = "none";
}
diagram = document.getElementById("diagram").ej2_instances[0];
symbolpalette = document.getElementById("symbolpalette").ej2_instances[0];
openTemplateDialog = document.getElementById("openTemplateDialog").ej2_instances[0];
Expand Down
2 changes: 1 addition & 1 deletion Scripts/utilitymethods.js
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ var UtilityMethods = (function () {
node.maxHeight = 100;
selectedItem.selectedDiagram.dataBind();
node.shape = {
type: 'Image', source: nodeInfo[propName] && nodeInfo[propName].value ? nodeInfo[propName].value.toString() : './Content/assets/dbstyle/orgchart_images/blank-male.jpg',
type: 'Image', source: nodeInfo[propName] && nodeInfo[propName].value ? nodeInfo[propName].value.toString() : '/Content/assets/dbstyle/orgchart_images/blank-male.jpg',
align: 'XMinYMin', scale: 'Meet'
};
selectedItem.selectedDiagram.dataBind();
Expand Down
5 changes: 1 addition & 4 deletions Views/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<base href="/" />
<link rel="icon" type="image/x-icon" href="~/favicon.ico" />
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<script src="~/Scripts/ej2/ej2.min.js"></script>
<script src="https://cdn.syncfusion.com/ej2/28.1.33/dist/ej2.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
<link href="~/Content/assets/index.css" rel="stylesheet" />
<link href="~/Content/assets/db-icons1/style.css" rel="stylesheet" />
Expand Down Expand Up @@ -35,9 +35,6 @@
padding-right: 0px !important;
/*increase width as per your need*/
max-width: 100%;
}
#js-licensing {
display: none;
}
</style>
<style>
Expand Down
7 changes: 3 additions & 4 deletions packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@
<package id="Microsoft.Web.Infrastructure" version="2.0.1" targetFramework="net472" />
<package id="Modernizr" version="2.8.3" targetFramework="net472" />
<package id="Newtonsoft.Json" version="13.0.2" targetFramework="net472" />
<package id="Syncfusion.EJ2.JavaScript" version="22.2.5" targetFramework="net472" />
<package id="Syncfusion.EJ2.MVC4" version="22.2.5" targetFramework="net472" />
<package id="Syncfusion.EJ2.MVC5" version="22.2.5" targetFramework="net472" />
<package id="Syncfusion.Licensing" version="22.2.5" targetFramework="net472" />
<package id="Syncfusion.EJ2.JavaScript" version="28.1.33" targetFramework="net472" />
<package id="Syncfusion.EJ2.MVC5" version="28.1.33" targetFramework="net462" />
<package id="Syncfusion.Licensing" version="28.1.33" targetFramework="net462" />
<package id="WebGrease" version="1.6.0" targetFramework="net472" />
</packages>

0 comments on commit 13f242d

Please sign in to comment.