Author: psharples
Date: Tue Jun 11 09:23:24 2013
New Revision: 1491716

URL: http://svn.apache.org/r1491716
Log:
Minor fix - Put back the pageId argument into the getPage JS call.

Modified:
    
rave/trunk/rave-portal-resources/src/main/webapp/static/script/core/rave_api.js

Modified: 
rave/trunk/rave-portal-resources/src/main/webapp/static/script/core/rave_api.js
URL: 
http://svn.apache.org/viewvc/rave/trunk/rave-portal-resources/src/main/webapp/static/script/core/rave_api.js?rev=1491716&r1=1491715&r2=1491716&view=diff
==============================================================================
--- 
rave/trunk/rave-portal-resources/src/main/webapp/static/script/core/rave_api.js 
(original)
+++ 
rave/trunk/rave-portal-resources/src/main/webapp/static/script/core/rave_api.js 
Tue Jun 11 09:23:24 2013
@@ -392,11 +392,14 @@ rave.api = rave.api || (function () {
             });
         }
 
-        //TODO: what does this do...
+        //allows us to examine the page layout, number of regions etc in js
         function getPage(args) {
             rave.ajax({
                 type: 'GET',
                 url: context + path + "page/get",
+                data: {
+                    pageId: args.pageId
+                },
                 dataType: 'json',
                 success: function (result) {
                     if (result.error) {


Reply via email to