arguman / arguman.org

Argument mapping and analysis platform
https://arguman.org
Other
1.39k stars 152 forks source link

Request: Add "expand all branches" button #256

Closed LivInTheLookingGlass closed 5 years ago

LivInTheLookingGlass commented 8 years ago

In python this would be something like:

def expandAll(self):      #Tree
    for child in self.get_premises():
        child.expandAll()

def expandAll(self):      #Node
    for child in self.published_children():
        child.expandAll()
    self.expanded = False