integration/js/main.js
author Anthony Ly <anthonyly.com@gmail.com>
Tue, 30 Oct 2012 18:04:28 +0100
changeset 19 81a605180745
parent 11 95df5542a1ce
child 20 c86141a8570d
permissions -rwxr-xr-x
ajout algo treemap
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
43d9dff6758a premiers ajout front périples
Anthony Ly <anthonyly.com@gmail.com>
parents:
diff changeset
     1
$(function(){
3
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
     2
//CLUSTER
2
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
     3
	var clusterWidth=0;
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
     4
	$('.cluster li').each( function(){ clusterWidth += $(this).width() + 10; });
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
     5
	$('.cluster').width( clusterWidth );
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
     6
	var clusterVisibleWidth = $(".cluster-visible").width();
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
     7
	var clusterVisibleLeft = 20;
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
     8
	if (clusterWidth>clusterVisibleWidth) {
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
     9
		$(".cluster-containment").css({
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    10
			"left": -(clusterWidth-clusterVisibleWidth),
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    11
			"width":clusterWidth+(clusterWidth-clusterVisibleWidth+clusterVisibleLeft)
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    12
		});
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    13
		$(".cluster-visible").css({"left": (clusterWidth-912+clusterVisibleLeft)});
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    14
		$("a.cluster-arrow").bind("click",function(e){
11
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
    15
		
2
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    16
			e.preventDefault();
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    17
			var clusterContainmentLeft = parseInt($(".cluster-containment").css("left"));
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    18
			var clusterContainmentRight = parseInt($(".cluster-containment").css("left")) + $(".cluster-containment").width();
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    19
			var clusterLeft = parseInt($(".cluster").css("left"));
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    20
			var clusterRight = parseInt($(".cluster").css("left"))+$(".cluster").width();
11
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
    21
			if ($(this).hasClass("arrow-right")) {
2
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    22
				if (clusterLeft-40>clusterContainmentLeft) {
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    23
					$(".cluster").css({
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    24
						"left":"-="+40	
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    25
					});
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    26
				}else{
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    27
					$(".cluster").css({
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    28
						"left":clusterContainmentLeft
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    29
					});
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    30
				}
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    31
		
11
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
    32
			}else if($(this).hasClass("arrow-left")){
2
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    33
			
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    34
				if (clusterRight+40<clusterContainmentRight) {
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    35
					$(".cluster").css({
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    36
						"left":"+="+40	
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    37
					});
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    38
				}else{
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    39
					$(".cluster").css({
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    40
						"left":0
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    41
					});
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    42
				}
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    43
			}
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    44
		});
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    45
	
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    46
		//DRAGGABLE
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    47
		$(".cluster").draggable({ axis: "x",containment: ".cluster-containment"  });
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    48
	};
3
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
    49
//WIDGET
11
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
    50
	//HEIGHT
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
    51
	var contentRightHeight = $(".content-right").height();
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
    52
	var contentLeftHeight = $(".content-left").height();
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
    53
	if(contentRightHeight>contentLeftHeight){
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
    54
		$(".content-left .widget-wrap").css({
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
    55
			"height":"+="+(contentRightHeight-contentLeftHeight)
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
    56
		});
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
    57
	}
3
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
    58
	//VOLET
4
b00fdbef41d4 ajout du header sur pages articles
Anthony Ly <anthonyly.com@gmail.com>
parents: 3
diff changeset
    59
	//Tout fermer par défaut
b00fdbef41d4 ajout du header sur pages articles
Anthony Ly <anthonyly.com@gmail.com>
parents: 3
diff changeset
    60
	//$("div.content-left div.widget-wrap div.widget div.widget-inner").hide().removeClass("open");
b00fdbef41d4 ajout du header sur pages articles
Anthony Ly <anthonyly.com@gmail.com>
parents: 3
diff changeset
    61
	//$("div.dossier-similaire div.widget div.widget-inner").hide().removeClass("open");
b00fdbef41d4 ajout du header sur pages articles
Anthony Ly <anthonyly.com@gmail.com>
parents: 3
diff changeset
    62
b00fdbef41d4 ajout du header sur pages articles
Anthony Ly <anthonyly.com@gmail.com>
parents: 3
diff changeset
    63
	$("div.content-left div.widget-wrap div.widget h3 a, div.dossier-similaire div.widget h3 a").bind("click",function(e){
2
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    64
		e.preventDefault();
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    65
		var widgetInner = $(this).parents("h3").siblings("div.widget-inner");
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    66
		widgetInner.stop();
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    67
		if ($(this).hasClass("open")) {
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    68
			widgetInner.slideUp();
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    69
			$(this).removeClass("open");
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    70
		}else{
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    71
			widgetInner.slideDown();
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    72
			$(this).addClass("open");
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    73
		}
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    74
	});
3
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
    75
	//AFFICHAGE
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
    76
	$('.widget.affichage li a').bind('click',function(e){
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
    77
		e.preventDefault();
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
    78
		if ($(this).hasClass("treemap") && !$(this).hasClass("active")) {
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
    79
			$('.widget.affichage li a.liste').removeClass("active");
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
    80
			$(this).addClass('active');
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
    81
		}else if($(this).hasClass("liste") && !$(this).hasClass("active")){
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
    82
			$('.widget.affichage li a.treemap').removeClass("active");
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
    83
			$(this).addClass('active');
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
    84
		}
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
    85
	});
5
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
    86
	//DATE PICKER
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
    87
	$(".dateBegin").datepicker({
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
    88
		onSelect: function( selectedDate ) {
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
    89
        	$( ".dateEnd" ).datepicker( "option", "minDate", selectedDate );
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
    90
        }
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
    91
	});
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
    92
	$(".dateEnd").datepicker({
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
    93
		onSelect: function( selectedDate ) {
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
    94
        	$( ".dateBegin" ).datepicker( "option", "maxDate", selectedDate );
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
    95
        }
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
    96
	});
3
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
    97
//VOLET DOCUMENTAIRE
2
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
    98
	$("div.dossier-documentaire").hide();
11
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
    99
	/*
2
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
   100
	$("div.header a.dossier-button").bind("click",function(e){
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
   101
		e.preventDefault();
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
   102
		$("div.dossier-documentaire").stop()
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
   103
		if($("div.dossier-documentaire").is(":visible")){
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
   104
			$("div.dossier-documentaire").slideUp();
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
   105
		}else{
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
   106
			$("div.dossier-documentaire").slideDown();
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
   107
		}
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
   108
	});
11
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
   109
*/
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
   110
	$("div.header a.dossier-button").bind("click",function(e){e.preventDefault();});
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
   111
	$("div.header a.dossier-button, div.header div.dossier-documentaire").hover(
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
   112
		function(){
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
   113
			$("div.dossier-documentaire").stop().slideDown();
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
   114
		},
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
   115
		function(){
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
   116
			$("div.dossier-documentaire").stop().slideUp();
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
   117
		}
95df5542a1ce traitement des retours
Anthony Ly <anthonyly.com@gmail.com>
parents: 9
diff changeset
   118
	);
3
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
   119
//ARTICLES
2
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
   120
	$(".article-visuel-wrap").each(function(){
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
   121
		var contentHeight = $(this).parents(".article-content").height();
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
   122
		//$(this).height(contentHeight);
6e47ed0c413c maj periplus front
Anthony Ly <anthonyly.com@gmail.com>
parents: 1
diff changeset
   123
	});
3
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
   124
//FRISE
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
   125
	//valeurs init du slider à définir
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
   126
	var valSlider1 = 75;
5
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
   127
	var valSlider2 = 300;
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
   128
	var diffSlide = valSlider2-valSlider1;
3
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
   129
	var widthFrise = $('.frise').width();
5
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
   130
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
   131
	$( "#slider-range" ).dragslider({
3
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
   132
		range: true,
5
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
   133
		rangeDrag: true,
3
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
   134
		min: 0,
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
   135
		max: widthFrise,
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
   136
		values: [ valSlider1, valSlider2 ],
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
   137
		slide: function( event, ui ) {
9
86ddd934464a Paired streamgraph with slider
veltr
parents: 6
diff changeset
   138
            if (window.streamgraph) {
86ddd934464a Paired streamgraph with slider
veltr
parents: 6
diff changeset
   139
                streamgraph.slidevalues(ui.values[0], ui.values[1]);
86ddd934464a Paired streamgraph with slider
veltr
parents: 6
diff changeset
   140
            }
5
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
   141
		},
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
   142
		change: function( event, ui ){
6
a3e60d7addb3 ajout des boutons annotations / montage
Anthony Ly <anthonyly.com@gmail.com>
parents: 5
diff changeset
   143
			//ici on récup les valeurs après un slide
a3e60d7addb3 ajout des boutons annotations / montage
Anthony Ly <anthonyly.com@gmail.com>
parents: 5
diff changeset
   144
			var value1 = ui.values[ 0 ];
a3e60d7addb3 ajout des boutons annotations / montage
Anthony Ly <anthonyly.com@gmail.com>
parents: 5
diff changeset
   145
			var value2 = ui.values[ 1 ];
3
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
   146
		}
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
   147
	});
5
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
   148
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
   149
16413123bc8c ajout date picker / avancement
Anthony Ly <anthonyly.com@gmail.com>
parents: 4
diff changeset
   150
	
3
b5b13ce6935f ajout de jquery ui
Anthony Ly <anthonyly.com@gmail.com>
parents: 2
diff changeset
   151
});//jQuery