Skip to content

Commit 9fc75ac

Browse files
committed
1 parent cc04619 commit 9fc75ac

8 files changed

+2318
-23
lines changed

README.txt

+1
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ can be really useful in visualising the issue along with any files you consider
159159

160160
New in 2.8.0.2
161161
==============
162+
- FIX: Issue #348: Slider controls do not work in RTL.
162163
- FIX: Issue #403: Enroll button does not work with two or more self-enrollment options.
163164
- FIX: Issue #404: M2.8 Adding a question to a new Quiz needs checking.
164165
- FIX: Issue #405: Extension of blocks into Footer region with "Edit Settings" on.

jquery/bootstrap_2_3_2.js

+2,280-6
Large diffs are not rendered by default.

jquery/bootstrap_2_3_2_min.js

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jquery/plugins.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
*/
4444

4545
$plugins = array(
46-
'bootstrap' => array('files' => array('bootstrap_2_3_2.js')),
46+
'bootstrap' => array('files' => array('bootstrap_2_3_2_min.js')),
4747
'html5shiv' => array('files' => array('html5shiv_3_7_2.js')),
4848
'breadcrumb' => array('files' => array('jBreadCrumb_1_1.js')),
4949
'fitvids' => array('files' => array('fitvids_1_1.js')),

less/bootstrap/carousel.less

+6-6
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
}
3737

3838
> .active {
39-
left: 0;
39+
/*@noflip*/left: 0;
4040
}
4141

4242
> .next,
@@ -47,21 +47,21 @@
4747
}
4848

4949
> .next {
50-
left: 100%;
50+
/*@noflip*/left: 100%;
5151
}
5252
> .prev {
53-
left: -100%;
53+
/*@noflip*/left: -100%;
5454
}
5555
> .next.left,
5656
> .prev.right {
57-
left: 0;
57+
/*@noflip*/left: 0;
5858
}
5959

6060
> .active.left {
61-
left: -100%;
61+
/*@noflip*/left: -100%;
6262
}
6363
> .active.right {
64-
left: 100%;
64+
/*@noflip*/left: 100%;
6565
}
6666

6767
}

lib.php

+6-4
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,12 @@ function theme_essential_render_slide($i, $captionoptions) {
931931
$slideurltarget = theme_essential_get_setting('slide' . $i . 'target');
932932
$slidetitle = theme_essential_get_setting('slide' . $i, true);
933933
$slidecaption = theme_essential_get_setting('slide' . $i . 'caption', true);
934-
$slideextraclass = ($i === 1) ? ' active' : '';
934+
if ($captionoptions == 0) {
935+
$slideextraclass = ' side-caption';
936+
} else {
937+
$slideextraclass = '';
938+
}
939+
$slideextraclass .= ($i === 1) ? ' active' : '';
935940
$slideimagealt = strip_tags(theme_essential_get_setting('slide' . $i, true));
936941
$slideimage = $OUTPUT->pix_url('default_slide', 'theme');
937942

@@ -940,9 +945,6 @@ function theme_essential_render_slide($i, $captionoptions) {
940945
$slideimage = $PAGE->theme->setting_file_url('slide' . $i . 'image', 'slide' . $i . 'image');
941946
}
942947

943-
if ($captionoptions == 0) {
944-
$slideextraclass .= ' side-caption';
945-
}
946948
if ($slideurl) {
947949
$slide = '<a href="' . $slideurl . '" target="' . $slideurltarget . '" class="item' . $slideextraclass . '">';
948950
} else {

style/essential-rtl.css

+12-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

style/essential.css

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)