10 lines
214 B
JavaScript
10 lines
214 B
JavaScript
/**
|
|
* Method used by Helma for URL composition.
|
|
*/
|
|
function href(action) {
|
|
var base = this.getParentElement().href()
|
|
+ this.getElementName() + "/";
|
|
return action ? base + action : base;
|
|
}
|
|
|
|
|