Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16750 | Rev 16754 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 16750 Rev 16753
Línea 28... Línea 28...
28
        type="text"
28
        type="text"
29
        name="description-main"
29
        name="description-main"
30
        placeholder="¿Qué tienes en mente?"
30
        placeholder="¿Qué tienes en mente?"
31
        className="form-control"
31
        className="form-control"
32
        readOnly
32
        readOnly
-
 
33
        onClick={(e) => {
-
 
34
          console.log(e.target)
33
        onClick={() => onClickHandler(shareModalTypes.POST)}
35
          onClickHandler(shareModalTypes.POST)
-
 
36
        }}
34
      />
37
      />
35
      <div className={styles.share_options}>
38
      <div className={styles.share_options}>
36
        <button
39
        <button
37
          className="btn py-0"
40
          className="btn py-0"
-
 
41
          onClick={(e) => {
-
 
42
            console.log(e.target)
38
          onClick={() => onClickHandler(shareModalTypes.VIDEO)}
43
            onClickHandler(shareModalTypes.VIDEO)
-
 
44
          }}
39
        >
45
        >
40
          <VideoIcon />
46
          <VideoIcon />
41
        </button>
47
        </button>
42
        <button
48
        <button
43
          className="btn py-0"
49
          className="btn py-0"
-
 
50
          onClick={(e) => {
-
 
51
            console.log(e.target)
44
          onClick={() => onClickHandler(shareModalTypes.IMAGE)}
52
            onClickHandler(shareModalTypes.IMAGE)
-
 
53
          }}
45
        >
54
        >
46
          <ImageIcon />
55
          <ImageIcon />
47
        </button>
56
        </button>
48
        <button
57
        <button
49
          className="btn py-0"
58
          className="btn py-0"
-
 
59
          onClick={(e) => {
-
 
60
            console.log(e.target)
50
          onClick={() => onClickHandler(shareModalTypes.FILE)}
61
            onClickHandler(shareModalTypes.FILE)
-
 
62
          }}
51
        >
63
        >
52
          <DocumentIcon />
64
          <DocumentIcon />
53
        </button>
65
        </button>
54
        <button className="btn py-0" onClick={openSurvey}>
66
        <button className="btn py-0" onClick={openSurvey}>
55
          <SurveyIcon />
67
          <SurveyIcon />
56
        </button>
68
        </button>
57
        <button
69
        <button
58
          className="btn py-0"
70
          className="btn py-0"
-
 
71
          onClick={(e) => {
-
 
72
            console.log(e.target)
59
          onClick={() => onClickHandler(shareModalTypes.POST)}
73
            onClickHandler(shareModalTypes.POST)
-
 
74
          }}
60
        >
75
        >
61
          <i className="fa fa-send" />
76
          <i className="fa fa-send" />
62
        </button>
77
        </button>
63
      </div>
78
      </div>
64
    </div>
79
    </div>