Difference between revisions of "Widget:UrlButton"

From Hackerspace ACKspace
Jump to: navigation, search
m (try and see if the button doesn't trigger a request)
m (test #2)
Line 36: Line 36:
 
     }
 
     }
  
     document.write( '<a href="<!--{$url|validate:url}-->" onclick="return buttonRequest();"><!--{$text|escape:html|default:auto}--></a>' );
+
     document.write( '<a href="<!--{$url|validate:url}-->" onclick="buttonRequest"><!--{$text|escape:html|default:auto}--></a>' );
 
}( ));
 
}( ));
 
</script>
 
</script>
 
</includeonly>
 
</includeonly>

Revision as of 08:58, 13 April 2018

This widget allows you to create a (http) link that gets called on the background. This can be used to switch a light, pan a camera or skip a song.

Created by Xopr

Using this widget

To insert this widget, use the following code:

{{#widget:UrlButton
 |text=Left
 |url=http://camera?Direction=PanLeft
 }}

This will give the following result:

Note that url and text is mandatory.

Copy to your site

To use this widget on your site, just install MediaWiki Widgets extension and copy full source code of this page to your wiki as Widget:UrlButton article.