소스 검색

remove unnesseary functions

ryuichi-e 6 년 전
부모
커밋
40863f0738
1개의 변경된 파일0개의 추가작업 그리고 18개의 파일을 삭제
  1. 0 18
      src/client/js/components/PageEditor/GridEditModal.jsx

+ 0 - 18
src/client/js/components/PageEditor/GridEditModal.jsx

@@ -54,24 +54,6 @@ export default class GridEditModal extends React.PureComponent {
     this.cancel();
   }
 
-  /* showBgCols() {
-    const cols = [];
-    for (let i = 0; i < 12; i++) {
-      // [bg-light:TODO support dark mode by GW-3037]
-      cols.push(<div className="bg-light grid-bg-col col-1"></div>);
-    }
-    return cols;
-  } */
-
-  /* showEditableCols() {
-    const cols = [];
-    for (let i = 0; i < 12; i++) {
-      // [bg-light:TODO support dark mode by GW-3037]
-      cols.push(<div className="bg-dark grid-bg-col col-1"></div>);
-    }
-    return cols;
-  } */
-
   render() {
     return (
       <Modal isOpen={this.state.show} toggle={this.cancel} size="xl">