Mover rows are more obvious links on Nox.
Mover rows are now bolded when selected on Nox. Fixed a bug where moves would get submitted multiple times.
This commit is contained in:
parent
5808f1d0ba
commit
5dec69b682
|
@ -1083,6 +1083,7 @@ function mainInit(){
|
||||||
console.log("fid: " + fid);
|
console.log("fid: " + fid);
|
||||||
forumToMoveTo = fid;
|
forumToMoveTo = fid;
|
||||||
|
|
||||||
|
$("#mover_submit").unbind("click");
|
||||||
$("#mover_submit").click(function(event){
|
$("#mover_submit").click(function(event){
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
bulkActionSender("move",selectedTopics,forumToMoveTo);
|
bulkActionSender("move",selectedTopics,forumToMoveTo);
|
||||||
|
|
|
@ -300,6 +300,10 @@ h1, h2, h3, h4, h5 {
|
||||||
}
|
}
|
||||||
.pane_row {
|
.pane_row {
|
||||||
margin-top: 2px;
|
margin-top: 2px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.pane_selected {
|
||||||
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
.pane_buttons {
|
.pane_buttons {
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
|
|
Loading…
Reference in New Issue