| 1992 | | // TODO make widget cells respect align. text-align:center for |
| 1993 | | // IE, margin: auto for others |
| | 1992 | // TODO most components work with this, but not all (e.g. |
| | 1993 | // Select) |
| | 1994 | // Old comment: make widget cells respect align. |
| | 1995 | // text-align:center for IE, margin: auto for others |
| | 1996 | if (align != ALIGN_LEFT) { |
| | 1997 | switch (align) { |
| | 1998 | case ALIGN_CENTER: |
| | 1999 | DOM.setStyleAttribute(container, "textAlign", "center"); |
| | 2000 | break; |
| | 2001 | case ALIGN_RIGHT: |
| | 2002 | default: |
| | 2003 | DOM.setStyleAttribute(container, "textAlign", "right"); |
| | 2004 | break; |
| | 2005 | } |
| | 2006 | } |