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-07-28 03:32:54 +0400
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-07-28 03:32:54 +0400
commit4b544aa9c09777426715b606319e54646bab5eda (patch)
treeab59bac1803b272272ca9d16ae69b65fd44a25ba /plugins/CoreHome/templates/date.js
parente20c0f86431de3c35c3e5cf7f66d8d98c71aced7 (diff)
- end of previous commit. For some reasons Tortoise didn't see these files, bad!
Diffstat (limited to 'plugins/CoreHome/templates/date.js')
-rw-r--r--plugins/CoreHome/templates/date.js89
1 files changed, 89 insertions, 0 deletions
diff --git a/plugins/CoreHome/templates/date.js b/plugins/CoreHome/templates/date.js
new file mode 100644
index 0000000000..2ee73f08bf
--- /dev/null
+++ b/plugins/CoreHome/templates/date.js
@@ -0,0 +1,89 @@
+$(document).ready(function(){
+ $("#periodString").hide();
+ $("#otherPeriods").hide();
+ $("#calendar").hide();
+ $("#periodString").show();
+
+ // we get the content of the div before modifying it (append image, etc.)
+ // so we can restore its value when we want
+ var savedCurrentPeriod = $("#periodString #currentPeriod").html();
+
+ // timeout used to fadeout the menu
+ var timeout = null;
+ var timeoutLength;
+
+ // restore the normal style of the current period type eg "DAY"
+ function restoreCurrentPeriod()
+ {
+ $("#currentPeriod")
+ .removeClass("hoverPeriod")
+ .html(savedCurrentPeriod);
+ }
+ // remove the sub menu created that contains the other periods availble
+ // eg. week | month | year
+ function removePeriodMenu() {
+ $("#otherPeriods").fadeOut('fast');
+ setCurrentPeriodStyle = true;
+ }
+
+ // state machine a bit complex and was hard to come up with
+ // there should be a simpler way to do it with jquery...
+ // if set to true, means that we want to style our current period
+ // for example add bold and append the image
+ var setCurrentPeriodStyle = true;
+
+ $("#periodString #periods")
+ .hover(function(){
+ $(this).css({ cursor: "pointer"});
+
+ // cancel the timeout
+ // indeed if the user goes away of the div and goes back on
+ // we don't hide the submenu!
+ if(timeout != null)
+ {
+ clearTimeout(timeout);
+ timeout = null;
+ timeoutLength = 500;
+ }
+ else
+ {
+ timeoutLength = 0;
+ setCurrentPeriodStyle = true;
+ }
+ if( setCurrentPeriodStyle == true)
+ {
+ $("#currentPeriod:not(.hoverPeriod)")
+ .addClass("hoverPeriod")
+ .append('&nbsp;<img src="plugins/CoreHome/templates/images/more_period.gif" style="vertical-align:middle">');
+ }
+ }, function(){
+ restoreCurrentPeriod();
+ // we callback the function to hide the sub menu
+ // only if it was visible (otherwise it messes the state machine)
+ if($("#otherPeriods").is(":visible"))
+ {
+ timeout = setTimeout( removePeriodMenu , timeoutLength);
+ }
+ setCurrentPeriodStyle = false;
+ })
+ .click( function() {
+ // we restore the initial style on the DAY link
+ restoreCurrentPeriod();
+ // the menu shall fadeout after 500ms
+ timeoutLength = 500;
+ // appearance!
+ $("#otherPeriods").fadeIn();
+
+ }
+ );
+
+ $("#periodString #date")
+ .hover( function(){
+ $(this).css({ cursor: "pointer"});
+ }, function(){
+
+ })
+ .click(function(){
+ $("#calendar").toggle();
+ });
+} ); \ No newline at end of file