Reverts change from merge in U4-11289 aka PR#2608 from Shan - that causes the Karma unit JS tests to fail - not sure why the chained version fails though & thus the Powershell ZIP & Nuget build output script

This commit is contained in:
Warren
2018-05-02 14:03:00 +01:00
parent a4cc67f732
commit 2246e5bc2f

View File

@@ -29,10 +29,9 @@ function contentCreateController($scope,
}
function createBlank(docType) {
$location
.path("/content/content/edit/" + $scope.currentNode.id)
.search("doctype", docType.alias)
.search("create", true);
$location
.path("/content/content/edit/" + $scope.currentNode.id)
.search("doctype=" + docType.alias + "&create=true");
close();
}
@@ -70,4 +69,4 @@ angular.module("umbraco").controller("Umbraco.Editors.Content.CreateController",
angular.module("umbraco").value("blueprintConfig", {
skipSelect: false,
allowBlank: true
});
});