Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-06-26 03:49:13 +0400
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-06-26 03:49:13 +0400
commit4654c59b7f84eeedf284ec4dbcb7609c26ae4323 (patch)
treef6c8a23e1340136b7f4947cb5c2d8a4383ae6f70 /plugins/ExamplePlugin
parent9c5b14fb1f8c5e547d89e1d4b73c7f2bef7970f2 (diff)
- improved echo output of DataTable (now showing user friendly output of datatable_Array)
- refs #208 hopefully fixed by limiting the number of levels in the Actions table hierarchy - refs #124 started cleaning html code (patch by milianw)
Diffstat (limited to 'plugins/ExamplePlugin')
-rw-r--r--plugins/ExamplePlugin/feedburner.tpl71
1 files changed, 35 insertions, 36 deletions
diff --git a/plugins/ExamplePlugin/feedburner.tpl b/plugins/ExamplePlugin/feedburner.tpl
index d72d825a4c..c3673bf529 100644
--- a/plugins/ExamplePlugin/feedburner.tpl
+++ b/plugins/ExamplePlugin/feedburner.tpl
@@ -1,36 +1,35 @@
-
-{literal}
-<script type="text/javascript">
- $(document).ready(function(){
-
- function getName()
- {
- return $("#feedburnerName").val();
- }
- function loadIframe()
- {
- var feedburnerName = getName();
- $("#feedburnerIframe").html(
- '<iframe height=100px frameborder="0" marginheight="10" marginwidth="10" \
- src="http://www.feedburner.com/fb/ticker/api-ticker2.jsp?uris='+feedburnerName+'"></iframe>');
- }
-
- $("#feedburnerSubmit").click( function(){
- var feedburnerName = getName();
- $.get('?module=ExamplePlugin&action=saveFeedburnerName&name='+feedburnerName);
- loadIframe();
-
- });
-
- loadIframe();
-});
-</script>
-{/literal}
-<span id="feedburnerIframe"></span>
-
-<center>
-<input id="feedburnerName" type="text" value="{$feedburnerFeedName}">
-<input id="feedburnerSubmit" type="submit" value="ok">
-</center>
-
-<br> \ No newline at end of file
+
+{literal}
+<script type="text/javascript">
+ $(document).ready(function(){
+
+ function getName()
+ {
+ return $("#feedburnerName").val();
+ }
+ function loadIframe()
+ {
+ var feedburnerName = getName();
+ $("#feedburnerIframe").html(
+ '<iframe height=100px frameborder="0" marginheight="10" marginwidth="10" \
+ src="http://www.feedburner.com/fb/ticker/api-ticker2.jsp?uris='+feedburnerName+'"></iframe>');
+ }
+
+ $("#feedburnerSubmit").click( function(){
+ var feedburnerName = getName();
+ $.get('?module=ExamplePlugin&action=saveFeedburnerName&name='+feedburnerName);
+ loadIframe();
+
+ });
+
+ loadIframe();
+});
+</script>
+{/literal}
+<span id="feedburnerIframe"></span>
+
+<center>
+<input id="feedburnerName" type="text" value="{$feedburnerFeedName}">
+<input id="feedburnerSubmit" type="submit" value="ok">
+</center>
+