Author: psharples
Date: Thu Sep 27 16:55:10 2012
New Revision: 1391098
URL: http://svn.apache.org/viewvc?rev=1391098&view=rev
Log:
Minor fix to one of the alert box messages
Modified:
rave/trunk/rave-portal-resources/src/main/webapp/static/script/rave_store.js
Modified:
rave/trunk/rave-portal-resources/src/main/webapp/static/script/rave_store.js
URL:
http://svn.apache.org/viewvc/rave/trunk/rave-portal-resources/src/main/webapp/static/script/rave_store.js?rev=1391098&r1=1391097&r2=1391098&view=diff
==============================================================================
---
rave/trunk/rave-portal-resources/src/main/webapp/static/script/rave_store.js
(original)
+++
rave/trunk/rave-portal-resources/src/main/webapp/static/script/rave_store.js
Thu Sep 27 16:55:10 2012
@@ -224,7 +224,7 @@ rave.store = rave.store || (function() {
if(widget.result == null){
alert(rave.getClientMessage("failed.add.from.marketplace"));
}else{
- alert((widget.result.title) +
rave.getClientMessage("success.add.from.marketplace"));
+ alert("(" + widget.result.title + ") " +
rave.getClientMessage("success.add.from.marketplace"));
}
}
});