unsure if we need this or not

This commit is contained in:
arzynik 2013-08-13 08:59:08 -07:00
parent 51326f7235
commit c09cffc078

View File

@ -68,9 +68,11 @@ App.confirm = function(txt, title) {
};
App.go = function(url) {
App.rootScope.$apply(function($location) {
$location.path(App.isPhoneGap ? url : 'index.html#' + url);
});
// @todo: do some tests to figure out if we need this or not
// App.rootScope.$safeApply(function() {
// App.location.path(!App.isPhoneGap ? url : 'index.html#' + url);
App.location.path(url);
// });
};