Skip to content

Commit a91b7b4

Browse files
authored
Merge pull request #10 from UNC-Libraries/all-hours
Remove "all hours" link
2 parents 88dfe0e + c27ac72 commit a91b7b4

6 files changed

+1
-150
lines changed

public/class-wplibcalhours-public.php

-12
Original file line numberDiff line numberDiff line change
@@ -100,18 +100,6 @@ public function enqueue_scripts() {
100100
* between the defined hooks and the functions defined in this
101101
* class.
102102
*/
103-
104-
wp_enqueue_script($this->plugin_name,
105-
plugin_dir_url(__FILE__) . 'js/wplibcalhours-public.js',
106-
array('jquery'),
107-
$this->version,
108-
false);
109-
110-
wp_enqueue_script($this->plugin_name . '-grid',
111-
plugin_dir_url(__FILE__) . 'js/grid.js',
112-
[],
113-
$this->version,
114-
['in_footer' => true, 'strategy' => 'defer']);
115103
}
116104

117105
/**

public/css/wplibcalhours-public.css

-26
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,6 @@
66
display: none;
77
}
88

9-
.wplibcalhours .prev {
10-
float: left;
11-
}
12-
13-
.wplibcalhours .next {
14-
float: right;
15-
}
16-
179
.wplibcalhours tbody td {
1810
vertical-align: top;
1911
}
@@ -68,24 +60,6 @@
6860
text-align: left;
6961
}
7062

71-
.hours-more {
72-
margin-top: 25px;
73-
}
74-
75-
.hours-more button {
76-
border: 2px solid #13294b;
77-
border-radius: 5px;
78-
padding: 8px 10px;
79-
color: white;
80-
min-width: 130px;
81-
}
82-
83-
.hours-more button:hover,
84-
.hours-more button:focus {
85-
background-color: transparent;
86-
color: #13294b;
87-
}
88-
8963
.circle {
9064
width: 10px;
9165
height: 10px;

public/js/grid.js

-41
This file was deleted.

public/js/wplibcalhours-public.js

-54
This file was deleted.

public/partials/grid.php

+1-6
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,4 @@ class="hours-list-view <?php echo $this->setClassList($stacked) ?>">
5959
</div>
6060
<?php endif ?>
6161
<?php endforeach ?>
62-
</div>
63-
<?php if (count($chunked_weeks) > 1): ?>
64-
<div class="hours-more">
65-
<button id="<?php echo $base_location ?>">View all hours</button>
66-
</div>
67-
<?php endif ?>
62+
</div>

public/partials/table.php

-11
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,4 @@
1919
</tr>
2020
<?php endfor ?>
2121
</tbody>
22-
23-
<?php if ($num_weeks > 1): ?>
24-
<tfoot>
25-
<tr>
26-
<td colspan="3">
27-
<a class="prev hidden">&laquo; <?php __( 'previous', 'wplibcalhours' ) ?></a>
28-
<a class="next"><?php __( 'next', 'wplibcalhours' ) ?> &raquo;</a>
29-
</td>
30-
</tr>
31-
</tfoot>
32-
<?php endif ?>
3322
</table>

0 commit comments

Comments
 (0)