Subversion Repository Public Repository

Nextrek

Diff Revisions 1014 vs 1015 for /legal-map/js/printItinerary.js

Diff revisions: vs.
  @@ -183,9 +183,11 @@
183 183 if ($(this).hasClass("selected")){
184 184 $(this).removeClass("selected");
185 185 $(this).addClass("unselected");
186 + $(".artDataContent_O").fadeOut(500);
186 187 }else{
187 188 $(this).removeClass("unselected");
188 189 $(this).addClass("selected");
190 + $(".artDataContent_O").fadeIn(500);
189 191 }
190 192 });
191 193
  @@ -193,9 +195,11 @@
193 195 if ($(this).hasClass("selected")){
194 196 $(this).removeClass("selected");
195 197 $(this).addClass("unselected");
198 + $(".artDataContent_R").fadeOut(500);
196 199 }else{
197 200 $(this).removeClass("unselected");
198 201 $(this).addClass("selected");
202 + $(".artDataContent_R").fadeIn(500);
199 203 }
200 204 });
201 205
  @@ -203,9 +207,11 @@
203 207 if ($(this).hasClass("selected")){
204 208 $(this).removeClass("selected");
205 209 $(this).addClass("unselected");
210 + $(".artDataContent_V").fadeOut(500);
206 211 }else{
207 212 $(this).removeClass("unselected");
208 213 $(this).addClass("selected");
214 + $(".artDataContent_V").fadeIn(500);
209 215 }
210 216 });
211 217 }