Remove all the container node stuff from AphrontTagView

Summary: See discussion in D6131, D6130. This turned into 35 layers of mess so throw it away and just tweak the JS to be more flexible.

Test Plan:
  - Clicked "Show More Applications".
  - Clicked "Show Fewer Applications".
  - Edited tasks using popup dialog.
  - Tried to drag tasks using pencil icon (correctly no longer works).
  - Changed threads in Conpherence.
  - Not sure how to actually hit the Conpherence "Load ... Threads" thing since
    it seems to auto-load? But that works, at least, and the code doesn't really
    care what you hit.
  - Added a conpherence participant.
  - Added a new calendar item.
  - Poked around other menus.

Reviewers: chad

Reviewed By: chad

CC: aran

Differential Revision: https://secure.phabricator.com/D6133
This commit is contained in:
epriestley
2013-06-05 16:21:55 -07:00
parent 94c29007b6
commit f26be0e2d4
5 changed files with 40 additions and 56 deletions

View File

@@ -125,9 +125,8 @@ abstract class PhabricatorDirectoryController extends PhabricatorController {
if ($is_hide) {
$label_id = celerity_generate_unique_node_id();
$attrs = array();
$attrs['style'] = 'display: none;';
$attrs['id'] = $label_id;
$label->setContainerAttrs($attrs);
$label->setStyle('display: none;');
$label->setID($label_id);
$tile_ids[] = $label_id;
}