Fix spelling mistake

Fix spelling mistake
This commit is contained in:
Joelvis Roman
2018-10-23 23:07:35 +01:00
committed by Sebastiaan Janssen
parent 05f5f2715b
commit e7c55e6d70
3 changed files with 3 additions and 3 deletions

View File

@@ -463,7 +463,7 @@ function navigationService($rootScope, $routeParams, $log, $location, $q, $timeo
//if it is not two parts long then this most likely means that it's a legacy action
var js = action.metaData["jsAction"].replace("javascript:", "");
//there's not really a different way to acheive this except for eval
//there's not really a different way to achieve this except for eval
eval(js);
}
else {

View File

@@ -11,7 +11,7 @@
*/
function NavigationController($scope, $rootScope, $location, $log, $routeParams, $timeout, appState, navigationService, keyboardService, dialogService, historyService, eventsService, sectionResource, angularHelper) {
//TODO: Need to think about this and an nicer way to acheive what this is doing.
//TODO: Need to think about this and an nicer way to achieve what this is doing.
//the tree event handler i used to subscribe to the main tree click events
$scope.treeEventHandler = $({});
navigationService.setupTreeEvents($scope.treeEventHandler);

View File

@@ -169,7 +169,7 @@ namespace Umbraco.Web.Templates
/// </param>
/// <returns></returns>
/// <remarks>
/// To acheive this we temporarily change the output text writer of the current HttpResponse, then
/// To achieve this we temporarily change the output text writer of the current HttpResponse, then
/// execute the controller via the handler which innevitably writes the result to the text writer
/// that has been assigned to the response. Then we change the response textwriter back to the original
/// before continuing .