guga42-push-mahabat-sahypa-select-time-duzedildi.
This commit is contained in:
parent
a7182d3d4d
commit
192979b882
|
|
@ -869,7 +869,18 @@
|
|||
@if($folder->property->filter_value == 2)
|
||||
@if($folder->choice_time == true)
|
||||
@foreach($folder->folder_table as $ft)
|
||||
<option class="time_opt" value="{{$ft['price']}}" data-toggle="tooltip" title="{{$ft['price']}} TMT">{{$ft['time']}}</option>
|
||||
@if($folder->on_tv != false)
|
||||
<option value="{{$ft['price']}}" class="sel_sel_time tv_time" data-toggle="tooltip" title="{{$ft['price']}} TMT">{{$ft['time']}}</option>
|
||||
@endif
|
||||
@if($folder->on_radio != false)
|
||||
<option value="{{$ft['price']}}" class="sel_sel_time radio_time" data-toggle="tooltip" title="{{$ft['price']}} TMT">{{$ft['time']}}</option>
|
||||
@endif
|
||||
@if($folder->on_subtitle != false)
|
||||
<option value="{{$ft['price']}}" class="sel_sel_time subtitle_time" data-toggle="tooltip" title="{{$ft['price']}} TMT">{{$ft['time']}}</option>
|
||||
@endif
|
||||
@if($folder->on_web != false)
|
||||
<option value="{{$ft['price']}}" class="sel_sel_time web_time" data-toggle="tooltip" title="{{$ft['price']}} TMT">{{$ft['time']}}</option>
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
@endif
|
||||
|
|
@ -885,7 +896,18 @@
|
|||
@if($folder->property->filter_value == 3)
|
||||
@if($folder->choice_time == true)
|
||||
@foreach($folder->folder_table as $ft)
|
||||
<option value="{{$ft['price']}}" data-toggle="tooltip" title="{{$ft['price']}} TMT">{{$ft['time']}}</option>
|
||||
@if($folder->on_tv != false)
|
||||
<option value="{{$ft['price']}}" class="sel_sel_time tv_time" data-toggle="tooltip" title="{{$ft['price']}} TMT">{{$ft['time']}}</option>
|
||||
@endif
|
||||
@if($folder->on_radio != false)
|
||||
<option value="{{$ft['price']}}" class="sel_sel_time radio_time" data-toggle="tooltip" title="{{$ft['price']}} TMT">{{$ft['time']}}</option>
|
||||
@endif
|
||||
@if($folder->on_subtitle != false)
|
||||
<option value="{{$ft['price']}}" class="sel_sel_time subtitle_time" data-toggle="tooltip" title="{{$ft['price']}} TMT">{{$ft['time']}}</option>
|
||||
@endif
|
||||
@if($folder->on_web != false)
|
||||
<option value="{{$ft['price']}}" class="sel_sel_time web_time" data-toggle="tooltip" title="{{$ft['price']}} TMT">{{$ft['time']}}</option>
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
@endif
|
||||
|
|
|
|||
|
|
@ -276,6 +276,16 @@ toggle between hiding and showing the dropdown content */
|
|||
}
|
||||
}, 250);
|
||||
|
||||
$('#prop-1').click(function () {
|
||||
$('select option').removeAttr('selected');
|
||||
})
|
||||
$('#prop-2').click(function () {
|
||||
$('select option').removeAttr('selected');
|
||||
})
|
||||
$('#prop-3').click(function () {
|
||||
$('select option').removeAttr('selected');
|
||||
})
|
||||
|
||||
|
||||
//calculator script
|
||||
$(document).ready(function () {
|
||||
|
|
|
|||
Loading…
Reference in New Issue