Skip to content

Commit

Permalink
v420 build
Browse files Browse the repository at this point in the history
  • Loading branch information
techies23 committed May 25, 2023
1 parent 6e48bd0 commit 37c44e5
Show file tree
Hide file tree
Showing 13 changed files with 11 additions and 13 deletions.
1 change: 1 addition & 0 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ Yes, you should be registered in Zoom. Also, depending on the zoom account plan
* Fixed: Search in host to WP page.
* Fixed: FSE theme join via browser page not working.
* Updated: WebSDK to version 2.12.2
* Fixed: Responsive fixed for shortcode table views.
* Bug fixes

= 4.1.11 May 3rd, 2023 =
Expand Down
1 change: 1 addition & 0 deletions assets/public/js/shortcode.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ var __webpack_exports__ = {};
$(document).on('click', '.vczapi-view-recording', this.openModal.bind(this));
$(document).on('click', '.vczapi-modal-close', this.closeModal.bind(this));
if ($('.vczapi-recordings-list-table').length > 0) {
console.log('here');
$('.vczapi-recordings-list-table').DataTable({
responsive: true,
language: vczapi_dt_i18n,
Expand Down
2 changes: 1 addition & 1 deletion assets/public/js/shortcode.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('lodash', 'react', 'react-dom', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-server-side-render', 'wp-url'), 'version' => '386a5d6c4d7b5c670ecf');
<?php return array('dependencies' => array('lodash', 'react', 'react-dom', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-server-side-render', 'wp-url'), 'version' => 'ae3cfe0dde73cf597d23');
4 changes: 1 addition & 3 deletions build/index.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion build/index.css.map

This file was deleted.

3 changes: 1 addition & 2 deletions build/index.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion build/index.js.map

This file was deleted.

1 change: 1 addition & 0 deletions src/public/js/shortcode.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@
$(document).on('click', '.vczapi-modal-close', this.closeModal.bind(this));

if ($('.vczapi-recordings-list-table').length > 0) {
console.log('here');
$('.vczapi-recordings-list-table').DataTable({
responsive: true,
language: vczapi_dt_i18n,
Expand Down
2 changes: 1 addition & 1 deletion templates/shortcode/list-meetings-host.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*/
?>

<table id="vczapi-show-meetings-list-table" class="vczapi-user-meeting-list">
<table id="vczapi-show-meetings-list-table" class="responsive nowrap vczapi-user-meeting-list">
<thead>
<tr>
<th><?php _e( 'Topic', 'video-conferencing-with-zoom-api' ); ?></th>
Expand Down
2 changes: 1 addition & 1 deletion templates/shortcode/list-webinars-host.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*/
?>

<table id="vczapi-show-webinars-list-table" class="vczapi-user-meeting-list">
<table id="vczapi-show-webinars-list-table" class="responsive nowrap vczapi-user-meeting-list">
<thead>
<tr>
<th><?php _e( 'Topic', 'video-conferencing-with-zoom-api' ); ?></th>
Expand Down
2 changes: 1 addition & 1 deletion templates/shortcode/zoom-recordings-by-meeting.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
</li>
</ul>
</div>
<table id="vczapi-recordings-list-table" class="vczapi-recordings-list-table-meeting-id vczapi-user-meeting-list">
<table id="vczapi-recordings-list-table" class="responsive nowrap vczapi-recordings-list-table-meeting-id vczapi-user-meeting-list">
<thead>
<tr>
<th><?php _e( 'Start Date', 'video-conferencing-with-zoom-api' ); ?></th>
Expand Down
2 changes: 1 addition & 1 deletion templates/shortcode/zoom-recordings.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<input type="text" name="date" id="vczapi-check-recording-date" class="vczapi-check-recording-date" value="<?php echo isset( $_GET['date'] ) ? esc_html( $_GET['date'] ) : date( 'F Y' ); ?>"/> <input type="submit" name="fetch_recordings" value="<?php _e( 'Check', 'video-conferencing-with-zoom-api' ); ?>">
</form>
</div>
<table id="vczapi-recordings-list-table" class="vczapi-recordings-list-table">
<table id="vczapi-recordings-list-table" class="vczapi-recordings-list-table responsive nowrap">
<thead>
<tr>
<th><?php _e( 'Meeting ID', 'video-conferencing-with-zoom-api' ); ?></th>
Expand Down

0 comments on commit 37c44e5

Please sign in to comment.