Of course I will
I have a question is it possible to make simple remake of touch slider to be more functionally on mobiles?
I have an idea but I need a little help
I think the way to do it is:
mod_realestate_os_featuredslider.php
change this code to a code which one is getting 'type' from .js file
Code: |
$show_type =$params->get('type','horizontal');
|
And add script in jquery like:
Code: |
if ($(window).width() < 960) {
$show_type = vertical
}
else {
$show_type = horizontal
}
|
I think I have a problem with getting variable from .js file to .php file