Skip to content

Commit

Permalink
fix $(...).sortable is not a function
Browse files Browse the repository at this point in the history
Resolve #5
  • Loading branch information
gdlcf88 committed Jul 10, 2022
1 parent 0193d19 commit a1a116d
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>0.5.4</Version>
<Version>0.5.5</Version>
<NoWarn>$(NoWarn);CS1591;CS0436</NoWarn>
<AbpProjectType>module</AbpProjectType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ public override void ConfigureBundle(BundleConfigurationContext context)
{
context.Files.AddRange(new[]
{
"/libs/easy-abp/easy-abp-dynamic.js",
"/easy-abp/easy-abp-dynamic.js",
"/libs/jquery-ui/js/jquery-ui.min.js"
});
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
var createModal = new abp.ModalManager(
{
viewUrl: abp.appPath + 'DynamicEntity/ModelDefinition/CreateModal',
scriptUrl: "/Pages/DynamicEntity/ModelDefinition/createEditModal.js",
scriptUrl: "/Pages/DynamicEntity/ModelDefinition/createEditModal.js?v=1",
modalClass: "CreateEditModal",
}
);
Expand Down
11 changes: 11 additions & 0 deletions src/EasyAbp.Abp.DynamicEntity.Web/abp.resourcemapping.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module.exports = {
aliases: {

},
clean: [

],
mappings: {
"@node_modules/jquery-ui-dist/jquery-ui.min.js": "@libs/jquery-ui/js/"
}
};
8 changes: 8 additions & 0 deletions src/EasyAbp.Abp.DynamicEntity.Web/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"version": "0.1.0",
"name": "my-app",
"private": true,
"dependencies": {
"jquery-ui-dist": "^1.13.1"
}
}

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions src/EasyAbp.Abp.DynamicEntity.Web/yarn.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1


jquery-ui-dist@^1.13.1:
version "1.13.1"
resolved "https://registry.npmmirror.com/jquery-ui-dist/-/jquery-ui-dist-1.13.1.tgz#47dcc1bf9cec141221ece59b2c8eaabad846ec0e"
integrity sha512-Y711Pu4BRVrAlL58KSxX4ail74jaCJZaZcdNDLava+MgZeNwmVWmyYiK7KxyoJu1MB73eSunjJvYDbOuNrOA7w==
dependencies:
jquery ">=1.8.0 <4.0.0"

"jquery@>=1.8.0 <4.0.0":
version "3.6.0"
resolved "https://registry.npmmirror.com/jquery/-/jquery-3.6.0.tgz#c72a09f15c1bdce142f49dbf1170bdf8adac2470"
integrity sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw==

0 comments on commit a1a116d

Please sign in to comment.