Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16906 Rev 16910
Línea 1452... Línea 1452...
1452
    	$('#row-quizz-add-box').hide();
1452
    	$('#row-quizz-add-box').hide();
1453
        $('#row-quizz-edit-box').hide();
1453
        $('#row-quizz-edit-box').hide();
Línea 1454... Línea 1454...
1454
        
1454
        
1455
        $('#modal-play-video-box').modal('hide');
1455
        $('#modal-play-video-box').modal('hide');
1456
        $('#modal-play-audio-box').modal('hide');
-
 
1457
        $('#modal-add-capsule-type-box').modal('hide');
1456
        $('#modal-play-audio-box').modal('hide');
1458
 
-
 
1459
 
-
 
1460
        
-
 
Línea 1461... Línea 1457...
1461
 
1457
  
1462
 
1458
 
Línea 1463... Línea 1459...
1463
         document.getElementById('microlearning-play-video').pause();
1459
         document.getElementById('microlearning-play-video').pause();
Línea 1464... Línea 1460...
1464
         document.getElementById('microlearning-play-audio').pause();
1460
         document.getElementById('microlearning-play-audio').pause();
1465
 
1461
 
Línea 1466... Línea 1462...
1466
        $('#row-listing').show();
1462
        $('#row-listing').show();
1467
        
1463
        
1468
        return false;
1464
        return false;
Línea 1469... Línea 1465...
1469
    });
1465
    });
Línea 1487... Línea 1483...
1487
 
1483
 
1488
        
1484
        
Línea 1489... Línea 1485...
1489
        return false;
1485
        return false;
1490
    });
1486
    });
Línea 1491... Línea 1487...
1491
 
1487
 
Línea 1492... Línea 1488...
1492
    $('body').on('click', 'button.btn-add-text', function(e) {
1488
    $('#btn-add-text').click(function(e) {
Línea 1506... Línea 1502...
1506
    	$('#row-text-add-box').show();
1502
    	$('#row-text-add-box').show();
Línea 1507... Línea 1503...
1507
 
1503
 
Línea 1508... Línea 1504...
1508
    });
1504
    });
1509
 
1505
 
Línea 1510... Línea 1506...
1510
 
1506
 
1511
    $('body').on('click', 'button.btn-add-image', function(e) {
1507
    $('#btn-add-image').click(function(e) {
1512
        e.preventDefault();
1508
        e.preventDefault();
Línea 1524... Línea 1520...
1524
 
1520
 
1525
            
1521
            
Línea 1526... Línea 1522...
1526
        return false;
1522
        return false;
1527
    });
1523
    });
Línea 1528... Línea 1524...
1528
 
1524
 
1529
    $('body').on('click', 'button.btn-add-video', function(e) {
1525
    $('#btn-add-video').click(function(e) {
1530
        e.preventDefault();
1526
        e.preventDefault();
Línea 1544... Línea 1540...
1544
 
1540
 
1545
        
1541
        
Línea 1546... Línea 1542...
1546
        return false;
1542
        return false;
1547
    });
1543
    });
Línea 1548... Línea 1544...
1548
 
1544
 
1549
    $('body').on('click', 'button.btn-add-document', function(e) {
1545
    $('#btn-add-document').click(function(e) {
Línea 1564... Línea 1560...
1564
 
1560
 
1565
        
1561
        
Línea 1566... Línea 1562...
1566
        return false;
1562
        return false;
1567
    });
1563
    });
Línea 1568... Línea 1564...
1568
 
1564
 
1569
    $('body').on('click', 'button.btn-add-audio', function(e) {
1565
    $('#btn-add-audio').click(function(e) {
1570
        e.preventDefault();
1566
        e.preventDefault();
Línea 2057... Línea 2053...
2057
		</div>
2053
		</div>
Línea 2058... Línea 2054...
2058
 
2054
 
2059
	 	<div class="card-footer text-right">
2055
	 	<div class="card-footer text-right">
2060
	 	     <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH  </button>
2056
	 	     <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH  </button>
-
 
2057
			<?php if($allowAdd) : ?>
2061
			<?php if($allowAdd) : ?>
2058
			<div class="btn-group dropup">
-
 
2059
            	<button type="button" class="btn btn-secondary dropdown-toggle" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
-
 
2060
            		<i class="fa fa-plus"></i> LABEL_ADD
-
 
2061
            	</button>
-
 
2062
            	<div class="dropdown-menu">
-
 
2063
 
-
 
2064
            		<a class="dropdown-item" href="#" id="btn-add-image"><i class="fa fa-image mr-2" aria-hidden="true"></i> LABEL_IMAGE </a>
-
 
2065
                   	<a class="dropdown-item" href="#" id="btn-add-text"><i class="fa fa-file mr-2" aria-hidden="true"></i> LABEL_TEXT </a>
-
 
2066
                    <a class="dropdown-item" href="#" id="btn-add-video"><i class="fa fa-video mr-2" aria-hidden="true"></i> LABEL_VIDEO </a>
-
 
2067
                    <a class="dropdown-item" href="#" id="btn-add-document"><i class="fa fa-file mr-2" aria-hidden="true"></i> LABEL_DOCUMENT </a>
-
 
2068
                    <a class="dropdown-item" href="#" id="btn-add-audio"><i class="fa fa-music mr-2" aria-hidden="true"></i> LABEL_AUDIO </a>
-
 
2069
                    <a class="dropdown-item" href="#" id="btn-add-quizz"><i class="fa fa-question mr-2" aria-hidden="true"></i> LABEL_QUIZ </a>
-
 
2070
                        
-
 
2071
                        
-
 
2072
            	</div>
-
 
2073
            </div>
-
 
2074
 
2062
			<button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
2075
		
2063
			<?php endif; ?>
2076
			<?php endif; ?>
2064
	 	</div>
2077
	 	</div>
Línea 3123... Línea 3136...
3123
         </div> 	
3136
         </div> 	
3124
	</div>
3137
	</div>
3125
</div>   
3138
</div>   
Línea 3126... Línea -...
3126
 
-
 
3127
 
-
 
3128
<!-- The Modal -->
-
 
3129
<div class="modal" id="modal-add-capsule-type-box">
-
 
3130
	<div class="modal-dialog ">
-
 
3131
    	<div class="modal-content">
-
 
3132
 
-
 
3133
            <!-- Modal Header -->
-
 
3134
      		<div class="modal-header">
-
 
3135
        		<h5 class="modal-title">LABEL_ADD_CAPSULE_SELECT_TYPE</h5>
-
 
3136
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
-
 
3137
      		</div>
-
 
3138
 
-
 
3139
            <!-- Modal body --> 
-
 
3140
            <div class="modal-body">
-
 
3141
                <div class="d-flex w-100 flex-column">
-
 
3142
                    <div class="row mb-4 mt-4">
-
 
3143
                        <div class="col-4 d-flex justify-content-center"><button type="button" class="btn btn-primary btn-sm  btn-add-image"><i class="fa fa-picture-o mr-2" aria-hidden="true"></i> Imagen </button></div>
-
 
3144
                        <div class="col-4 d-flex justify-content-center"><button type="button" class="btn btn-primary btn-sm   btn-add-text"><i class="fa fa-file-text-o mr-2" aria-hidden="true"></i> Texto </button></div>
-
 
3145
                        <div class="col-4 d-flex justify-content-center"><button type="button" class="btn btn-primary  btn-sm btn-add-video"><i class="fa fa-video-camera mr-2" aria-hidden="true"></i> Video </button></div>
-
 
3146
                        
-
 
3147
                        
-
 
3148
                    </div>
-
 
3149
                    <div class="row mb-4">
-
 
3150
                        <div class="col-4 d-flex justify-content-center"><button type="button" class="btn btn-primary btn-sm btn-add-document"><i class="fa fa-file mr-2" aria-hidden="true"></i> Documento </button></div>
-
 
3151
                        <div class="col-4 d-flex justify-content-center"><button type="button" class="btn btn-primary  btn-sm btn-add-audio"><i class="fa fa-music mr-2" aria-hidden="true"></i> Audio </button></div>
-
 
3152
                        <div class="col-4 d-flex justify-content-center"><button type="button" class="btn btn-primary  btn-sm btn-add-quizz"><i class="fa fa-question mr-2" aria-hidden="true"></i> Cuestionario </button></div>
-
 
3153
                        
-
 
3154
                        
-
 
3155
                    </div>
-
 
3156
                    <div class='d-flex justify-content-between'>
-
 
3157
                        
-
 
3158
                        
-
 
3159
                        
-
 
3160
                    </div>
-
 
3161
                </div>
-
 
3162
 
-
 
3163
 
-
 
3164
 
-
 
3165
				
-
 
3166
      		</div>
-
 
3167
		
-
 
3168
            <!-- Modal footer -->
-
 
3169
      		<div class="modal-footer text-right">
-
 
3170
        		<button type="button" class="btn btn-danger btn-sm" data-dismiss="modal">LABEL_CLOSE</button>
-
 
3171
          	</div>
-
 
3172
         </div> 	
-