From: erickson Date: Tue, 22 Apr 2008 00:58:31 +0000 (+0000) Subject: returning the fund as an href which links to view fund page X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=6b78ffdf63fe7c61948da781ed698bf9060682b8;p=Evergreen.git returning the fund as an href which links to view fund page git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@9420 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_funding_source.html b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_funding_source.html index 5814a941a4..9a18d1877c 100644 --- a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_funding_source.html +++ b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_funding_source.html @@ -76,7 +76,8 @@ req.send(); fundCache[fundId] = req.recv().content(); } - return fundCache[fundId].name() + var name = fundCache[fundId].name(); + return ''+name+''; } /** builds the credits grid ----- */ @@ -98,7 +99,7 @@ fsCreditGrid.isLoaded = true; } - /** builds the credits grid ----- */ + /** builds the allocations grid ----- */ function loadAllocationGrid() { if(fsAllocationGrid.isLoaded) return; var store = new dojo.data.ItemFileReadStore({data:acqfa.toStoreData(fundingSource.allocations())});