Commit 80d1ade4e9113c408f77bf8886aa95cc64609dc3

Authored by Nam Tran
1 parent 2bbfdb2bd8
Exists in master

F6 SSD

Showing 1 changed file with 27 additions and 0 deletions Inline Diff

screen_sequence_diagrams/blank_out_words.dot View file @ 80d1ade
File was created 1 digraph G{
2 ratio=0.75;
3 //rankdir="LR";
4 labelloc="t";
5 label="[F6] Blank Out Words in Flashcards";
6 node[shape=box, style="rounded,filled,bold"];
7 splines=ortho;
8 nodesep=1.0;
9 "View Deck"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"];
10 "Controller"[center=true, fillcolor="#aaaaff", style=filled, shape = diamond,
11 fixedsize=true, width=1.4, height=1.4];
12
13 "View Deck" -> "Flashcard";
14 "Flashcard" -> "Edit Flashcard Page";
15 "Edit Flashcard Page" -> "POST";
16 "POST" -> "Controller";
17
18 //Only blanks(mask) altered
19 "Only mask altered"[shape=none];
20 "Server creates New FlashcardMask object"[fillcolor="#aaaaff", style=filled,pos="0,0!"];
21 "Controller" -> "Only mask altered";
22 "Only mask altered" -> "Server creates New FlashcardMask object";
23 "Server creates New FlashcardMask object" -> "View Deck";
24