Correctly constructing the file's relative path
authorJan Lahoda <jlahoda@netbeans.org>
Thu, 28 Mar 2013 21:06:15 +0100
changeset 9374db4c04713d6
parent 936 74d52c41b863
child 938 0c82401751df
Correctly constructing the file's relative path
remoting/server/web/web.ui.frontend/public_html/index/ui/script.js
     1.1 --- a/remoting/server/web/web.ui.frontend/public_html/index/ui/script.js	Thu Mar 28 21:05:52 2013 +0100
     1.2 +++ b/remoting/server/web/web.ui.frontend/public_html/index/ui/script.js	Thu Mar 28 21:06:15 2013 +0100
     1.3 @@ -16,6 +16,7 @@
     1.4                          symbols[j].project = project;
     1.5                          symbols[j].displayName = symbolDisplayName(symbols[j]).replace("&", "&amp;").replace("<", "&lt;");
     1.6                          symbols[j].enclosingFQN = symbols[j].enclosingFQN.replace("&", "&amp;").replace("<", "&lt;");
     1.7 +                        symbols[j].file = relPath + symbols[j].file;
     1.8                          result[index++] = symbols[j];
     1.9                      }
    1.10                  }