We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 614c5cd + b62e88e commit c172dfaCopy full SHA for c172dfa
BlogEngine/BlogEngine.NET/admin/app/custom/widgets/widgetController.js
@@ -44,6 +44,7 @@
44
var sharedSrc = SiteVars.RelativeWebRoot + "Custom/Widgets/common.cshtml";
45
var customSrc = SiteVars.RelativeWebRoot + "Custom/Widgets/" + name + "/edit.cshtml";
46
47
+
48
$scope.editId = id;
49
$scope.editTitle = title;
50
$scope.editZone = zone;
@@ -54,7 +55,7 @@
54
55
56
$.ajax({
57
type: 'HEAD',
- url: customSrc,
58
+ url: customSrc + "?id=" + id,
59
async: false,
60
success: function () {
61
$scope.editSrc = customSrc + "?id=" + id + "&zone=" + zone;
@@ -215,4 +216,4 @@
215
216
217
var updateTitle = function () {
218
return angular.element($('#edit-widget')).scope().updateTitle();
-}
219
+}
0 commit comments