Assemble correct display url part

This commit is contained in:
Vit Brunner
2014-12-19 21:53:31 +01:00
parent 6d039a8230
commit 9055e027df
3 changed files with 15 additions and 4 deletions
+8 -1
View File
@@ -22,9 +22,16 @@ angular.module("sideBySide").service "route", ['$location', ($location) ->
@appUrl = $location.absUrl()
.substring(0, $location.absUrl().length - $location.url().length)
getValue = (value) ->
if (typeof value == 'object')
for key, val of value
# only works for one key...
return key + ":" + val.join(',')
value
@update = (key, value) ->
@params[key] = value
$location.path (property + ':' + value for property, value of @params).join('/')
$location.path (property + ':' + getValue(value) for property, value of @params).join('/')
@
]