Author: erinnp
Date: Fri Aug 16 18:45:07 2013
New Revision: 1514845
URL: http://svn.apache.org/r1514845
Log:
Re-fix rave_ui require paths
Modified:
rave/branches/angular/rave-portal-resources/src/main/webapp/static/script/common/resources/PeopleResource.js
rave/branches/angular/rave-portal-resources/src/main/webapp/static/script/portal_old/rave_ui.js
Modified:
rave/branches/angular/rave-portal-resources/src/main/webapp/static/script/common/resources/PeopleResource.js
URL:
http://svn.apache.org/viewvc/rave/branches/angular/rave-portal-resources/src/main/webapp/static/script/common/resources/PeopleResource.js?rev=1514845&r1=1514844&r2=1514845&view=diff
==============================================================================
---
rave/branches/angular/rave-portal-resources/src/main/webapp/static/script/common/resources/PeopleResource.js
(original)
+++
rave/branches/angular/rave-portal-resources/src/main/webapp/static/script/common/resources/PeopleResource.js
Fri Aug 16 18:45:07 2013
@@ -18,7 +18,7 @@
*/
define([], function(){
- return['$resource', 'constants', function($resource, constants){
+ return ['$resource', 'constants', function($resource, constants){
return $resource(constants.hostedPath + '/api/rest/people/:id', {id:
'@id'});
}];
Modified:
rave/branches/angular/rave-portal-resources/src/main/webapp/static/script/portal_old/rave_ui.js
URL:
http://svn.apache.org/viewvc/rave/branches/angular/rave-portal-resources/src/main/webapp/static/script/portal_old/rave_ui.js?rev=1514845&r1=1514844&r2=1514845&view=diff
==============================================================================
---
rave/branches/angular/rave-portal-resources/src/main/webapp/static/script/portal_old/rave_ui.js
(original)
+++
rave/branches/angular/rave-portal-resources/src/main/webapp/static/script/portal_old/rave_ui.js
Fri Aug 16 18:45:07 2013
@@ -18,7 +18,7 @@
*/
define(["jquery", "underscore", "rave",
- "portal/rave_portal", "portal/rave_backbone", "portal/rave_models",
"portal/rave_templates",
+ "portal_old/rave_portal", "portal_old/rave_backbone",
"portal_old/rave_models", "portal_old/rave_templates",
"jqueryUi"],
function ($, _, rave, ravePortal, raveBackbone, raveModels, raveTemplates)
{
var exports = {};