Skip to content
Extraits de code Groupes Projets
Valider 050918a3 rédigé par Sarah Mei's avatar Sarah Mei
Parcourir les fichiers

Added link to manage aspects page from sidebar.

Now you can drag requests from that page, but not existing contacts. d&d interface for moving contacts between aspects needs some thought.
parent 73c7a1d3
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -89,7 +89,7 @@ ...@@ -89,7 +89,7 @@
%br %br
%h3{:style=>"position:relative;"} %h3{:style=>"position:relative;"}
= t('.aspects') = link_to(t('.aspects'), aspects_manage_path)
.right{:style=>"font-size:12px;top:7px;"} .right{:style=>"font-size:12px;top:7px;"}
= link_to t('.add_aspect'), '#add_aspect_pane', :class => "add_aspect_button" = link_to t('.add_aspect'), '#add_aspect_pane', :class => "add_aspect_button"
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
var AspectEdit = { var AspectEdit = {
initialize: function() { initialize: function() {
$("ul .person").draggable({ $("ul .person.request").draggable({
revert: true, revert: true,
start: AspectEdit.startDrag, start: AspectEdit.startDrag,
drag: AspectEdit.duringDrag, drag: AspectEdit.duringDrag,
......
...@@ -22,7 +22,7 @@ describe("AspectEdit", function() { ...@@ -22,7 +22,7 @@ describe("AspectEdit", function() {
drag: AspectEdit.duringDrag, drag: AspectEdit.duringDrag,
stop: AspectEdit.stopDrag stop: AspectEdit.stopDrag
}); });
expect($.fn.draggable.mostRecentCall.object.selector).toEqual("ul .person"); expect($.fn.draggable.mostRecentCall.object.selector).toEqual("ul .person.request");
}); });
it("calls droppable on .aspect ul.dropzone", function() { it("calls droppable on .aspect ul.dropzone", function() {
spyOn($.fn, "droppable"); spyOn($.fn, "droppable");
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter