OK, no takers. So I decided to keep it simple and only use AngularJS which
Guacamole relies on.
Here's my super simple custom extension:
# cat guac-manifest.json
{
"guacamoleVersion" : "*",
"name" : "Custom URLs",
"namespace" : "customurls",
"html" : [
"CustomURLs.html"
]
}
# cat CustomURLs.html
<meta name="after" content=".all-connections">
<div class="header">
<h2>EXAMPLE</h2>
</div>
<div ng-app id="ng-app">
<a href="#" ng-model="collapsed" ng-click="collapsed=!collapsed">Example</a>
<div ng-show="collapsed">
<p>
Test
</p>
</div>
</div>
If I enter the Guacamole web UI, I can see the "Example" collapsible, but I
cannot open it up (ie. I cannot see the "Test" message).
What's wrong with this extension?
Any clues?
Vieri
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]