Skip to content

Commit a6cd27c

Browse files
committed
Upgraded abp-web-resources package to v0.10.3.
1 parent 43fae15 commit a6cd27c

File tree

5 files changed

+21
-9
lines changed

5 files changed

+21
-9
lines changed

src/AbpCompanyName.AbpProjectName.Web/wwwroot/lib/abp-web-resources/.bower.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"authors": [
55
"Halil İbrahim Kalkan"
66
],
7-
"version": "0.10.0",
7+
"version": "0.10.3",
88
"description": "Script and style resources for ASP.NET Boilerplate based web projects.",
99
"main": "Abp/Framework/scripts/abp.js",
1010
"moduleType": [],
@@ -25,14 +25,13 @@
2525
".nuget",
2626
"packages"
2727
],
28-
"_release": "0.10.0",
28+
"_release": "0.10.3",
2929
"_resolution": {
3030
"type": "version",
31-
"tag": "v0.10.0",
32-
"commit": "419f0c04286ce576ded0d79a938033d63eb48fb1"
31+
"tag": "v0.10.3",
32+
"commit": "756cbf5522a25e09a3604edbaf3aec7e8d7e0d21"
3333
},
3434
"_source": "https://github.com/aspnetboilerplate/bower-abp-resources.git",
3535
"_target": "^0.10.0",
36-
"_originalSource": "abp-web-resources",
37-
"_direct": true
36+
"_originalSource": "abp-web-resources"
3837
}

src/AbpCompanyName.AbpProjectName.Web/wwwroot/lib/abp-web-resources/Abp/Framework/scripts/libs/abp.signalr.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,17 @@
4242
abp.signalr.connect();
4343
}
4444

45+
//reconnect if hub disconnects
46+
$.connection.hub.disconnected(function () {
47+
if (!abp.signalr.autoConnect) {
48+
return;
49+
}
50+
51+
setTimeout(function () {
52+
if ($.connection.hub.state === $.signalR.connectionState.disconnected) {
53+
$.connection.hub.start();
54+
}
55+
}, 5000);
56+
});
57+
4558
})(jQuery);

src/AbpCompanyName.AbpProjectName.Web/wwwroot/lib/abp-web-resources/bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"authors": [
55
"Halil İbrahim Kalkan"
66
],
7-
"version": "v0.10.0",
7+
"version": "v0.10.3",
88
"description": "Script and style resources for ASP.NET Boilerplate based web projects.",
99
"main": "Abp/Framework/scripts/abp.js",
1010
"moduleType": [],

src/AbpCompanyName.AbpProjectName.Web/wwwroot/lib/abp-web-resources/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "abp-web-resources",
3-
"version": "0.10.0",
3+
"version": "0.10.3",
44
"description": "ASP.NET Boilerplate web resources",
55
"main": "Abp/Framework/scripts/abp.js",
66
"dependencies": {},
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Abp.Web.Resources" version="0.9.2.0" targetFramework="net452" />
3+
<package id="Abp.Web.Resources" version="0.10.3.0" targetFramework="net452" />
44
</packages>

0 commit comments

Comments
 (0)