Rename go() into goToPage() which is available from everywhere thanks to the inheritance of $scope

This commit is contained in:
Emmanuel ROHEE 2014-08-27 10:25:27 +02:00
parent e40d829363
commit 6691ca6f8d
2 changed files with 6 additions and 2 deletions

View file

@ -37,7 +37,11 @@ angular.module('MatrixWebClientController', ['matrixService', 'mPresence', 'even
mPresence.start();
}
$scope.go = function(url) {
/**
* Open a given page.
* @param {String} url url of the page
*/
$scope.goToPage = function(url) {
$location.url(url);
};