Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16753 Rev 16754
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)
-
 
35
          onClickHandler(shareModalTypes.POST)
33
        onClick={() => onClickHandler(shareModalTypes.POST)}
36
        }}
-
 
37
      />
34
      />
38
      <div className={styles.share_options}>
35
      <div className={styles.share_options}>
39
        <button
36
        <button
40
          className="btn py-0"
37
          className="btn py-0"
41
          onClick={(e) => {
-
 
42
            console.log(e.target)
-
 
43
            onClickHandler(shareModalTypes.VIDEO)
38
          onClick={() => onClickHandler(shareModalTypes.VIDEO)}
44
          }}
-
 
45
        >
39
        >
46
          <VideoIcon />
40
          <VideoIcon />
47
        </button>
41
        </button>
48
        <button
42
        <button
49
          className="btn py-0"
43
          className="btn py-0"
50
          onClick={(e) => {
-
 
51
            console.log(e.target)
-
 
52
            onClickHandler(shareModalTypes.IMAGE)
44
          onClick={() => onClickHandler(shareModalTypes.IMAGE)}
53
          }}
-
 
54
        >
45
        >
55
          <ImageIcon />
46
          <ImageIcon />
56
        </button>
47
        </button>
57
        <button
48
        <button
58
          className="btn py-0"
49
          className="btn py-0"
59
          onClick={(e) => {
-
 
60
            console.log(e.target)
-
 
61
            onClickHandler(shareModalTypes.FILE)
50
          onClick={() => onClickHandler(shareModalTypes.FILE)}
62
          }}
-
 
63
        >
51
        >
64
          <DocumentIcon />
52
          <DocumentIcon />
65
        </button>
53
        </button>
66
        <button className="btn py-0" onClick={openSurvey}>
54
        <button className="btn py-0" onClick={openSurvey}>
67
          <SurveyIcon />
55
          <SurveyIcon />
68
        </button>
56
        </button>
69
        <button
57
        <button
70
          className="btn py-0"
58
          className="btn py-0"
71
          onClick={(e) => {
-
 
72
            console.log(e.target)
-
 
73
            onClickHandler(shareModalTypes.POST)
59
          onClick={() => onClickHandler(shareModalTypes.POST)}
74
          }}
-
 
75
        >
60
        >
76
          <i className="fa fa-send" />
61
          <i className="fa fa-send" />
77
        </button>
62
        </button>
78
      </div>
63
      </div>
79
    </div>
64
    </div>