Commit 815c4670 authored by Lingnan Wu's avatar Lingnan Wu

add the hove and mousedown function for each slides .

parent b323bf21
......@@ -189,6 +189,15 @@
$('.remove_slide_button').click(function() {
removeClick(this);
});
$('section').hover(function() {
slideHover(this);
}, function(){
slideOut(this);
});
$('section').mousedown(function() {
slideOut(this);
});
},
onload: function (param) {
var waitForInit = function (fun) {
......
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