upgraded the help menu and added handler for bushi_bar guide

This commit is contained in:
Kev Zettler 2011-07-22 17:55:01 -07:00
parent e2b68ba861
commit b780bbd42a
1 changed files with 15 additions and 14 deletions

View File

@ -58,7 +58,6 @@ $(document).ready(function(){
var possibles = ['ul.folder:first li', var possibles = ['ul.folder:first li',
'ul#pages-list li']; 'ul#pages-list li'];
for(var i = 0; i<possibles.length; i++){ for(var i = 0; i<possibles.length; i++){
console.log("checking possibles", i, possibles[i]);
if($(possibles[i]).length > 0){ if($(possibles[i]).length > 0){
return possibles[i]; return possibles[i];
} }
@ -551,9 +550,9 @@ $(document).ready(function(){
$(".tutorial").click(function(){ $(".tutorial").click(function(){
var $this = $(this); var $this = $(this);
guiders.hideAll(); guiders.hideAll();
if($this.attr('href') != '#'){ if($this.attr('href') != '#' && window.location.pathname != $this.attr('href')){
window.location = $this.attr('href') + "#guider=" + $this.attr('id'); window.location = $this.attr('href') + "#guider=" + $this.attr('id');
window.location.refresh; window.location.reload();
}else{ }else{
guiders.show($this.attr('id')); guiders.show($this.attr('id'));
} }
@ -583,6 +582,7 @@ $(document).ready(function(){
window.onload = function(){ window.onload = function(){
window.setTimeout(function(){ window.setTimeout(function(){
if($('#bushi_banner').length > 0){
guiders.createGuider({ guiders.createGuider({
attachTo: "#bushi_banner", attachTo: "#bushi_banner",
description: "You may have noticed the bar at the top of your site. Its provided by Bushido. Bushido are friends of LocomotiveCMS. They are our official hosting partner.\ description: "You may have noticed the bar at the top of your site. Its provided by Bushido. Bushido are friends of LocomotiveCMS. They are our official hosting partner.\
@ -594,6 +594,7 @@ $(document).ready(function(){
next: "congratulations", next: "congratulations",
position: 6 position: 6
}); });
}
}, 1000); }, 1000);
}; };