add show more functionality to notifications. don't scroll to the top of the page when clicked
This commit is contained in:
parent
4a101f25d9
commit
6a9df590d0
1 changed files with 7 additions and 0 deletions
|
|
@ -19,6 +19,13 @@
|
||||||
type: "PUT"
|
type: "PUT"
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$("a.more").live("click", function(evt) {
|
||||||
|
evt.preventDefault();
|
||||||
|
$(this).hide()
|
||||||
|
.next(".hidden")
|
||||||
|
.removeClass("hidden");
|
||||||
|
});
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue