Commit b75bc4b4 authored by Lingnan Wu's avatar Lingnan Wu

Debug : add 2 functions to reinitialslides ,when load the slides , move mouse...

Debug : add 2 functions to reinitialslides ,when load the slides , move mouse on these 2 button ,we can see the button now
parent cb254c46
......@@ -247,6 +247,16 @@ function reinitialSlides(){
$('.remove_slide_button').click(function() {
removeClick(this);
});
$('.edit_slide_button').hover(function() {
buttonHover(this);
}, function(){
slideOut(this);
});
$('.remove_slide_button').hover(function() {
buttonHover(this);
}, function(){
slideOut(this);
});
$('section').hover(function() {
slideHover(this);
}, function(){
......@@ -255,6 +265,7 @@ function reinitialSlides(){
$('section').mousedown(function() {
slideOut(this);
});
}
$(document).ready(function(){
$(function() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment