Your IP : 216.73.216.79


Current Path : /var/www/html/dynaweb.blunetdev.com/backend/modules/support/views/support-faq/
Upload File :
Current File : /var/www/html/dynaweb.blunetdev.com/backend/modules/support/views/support-faq/stub.php

<?php  $this->registerJs("    
(function(){
$('body').addClass('fixed-sidebar no-skin-config full-height-layout'); 
    var tab = [];
    $('.faq-item a').click(function(){
        var tlink = $($(this).data('tab'));
        var tsibs = tlink.parent().siblings();

        /* accordion effect */
        $('.faq-item a').each(function(){
            var dataTab = $(this).data('tab');
            var href = $('a[data-tab=\"'+dataTab+'\"]').attr('href');
            if(tlink.selector != dataTab)
            {
                $(href).removeClass('in');
            }
        });

        /* remove active */
        $('.nav-tabs').children('li').each(function(){
            var title = $(this).children('a').attr('href').split('#').pop();
            if( $(this).hasClass('active') )
            {
                $(this).removeClass('active');
            }
            
            if( title == tlink.selector )
            {
                $('a[href=\"#'+title+'\"]').show();
                $(this).addClass('active');

                /* remove duplicate */
                if(!tab.includes('#'+title))
                {
                    tab.push('#'+title);
                }
            }
        });

        /* remove active class for bottom tab */
        $('.tab-pane').each(function()
        {
            if($(this).hasClass('active'))
            {
                $(this).removeClass('active');
            }
            if( $(this)[0].id == tlink.selector )
            {
                $(this).addClass('active');
            }
        });
    });
    
    $('ul.nav-tabs a > i').click(function(){
       
        if($(this).closest('li').hasClass('active'))
        {   
            var tp = tab.indexOf($(this).parent().attr('href'));
            var p;
            var pr = $(this).parent().attr('href');
            var t;
            $(this).parent().hide();
            $(pr).removeClass('active');

            for(i=0; i < tab.length; i++)
            {   
                if( tab[i] == $(this).parent().attr('href') )
                {
                    tab.splice(i,1);
                }
            }
            p = (tp - 1) < 0 ? 0 : tp - 1 ;
            t = tab[p];
            $(t).addClass('active');
            $('a[href=\"'+t+'\"]').parent().addClass('active');
        }
    });

    $('ul.nav-tabs a > span').click(function(){
        var a = $(this).parent().attr('href');
        $('.faq-item a').each(function(){
            var afaq = $(this).attr('href');
            var aTab = '#'+$(this).data('tab');
            if( a != aTab)
            {
                $(afaq).removeClass('in');
            }else{
                $(this).click();
            }
        });
    });


})();
"); ?>

<style>
/* ————————————————————–
  Tree core styles
*/
    .tree {
        margin: 1em;
        list-style-type: none !important;
        transition: all 0.3s ease;
        font-size: 12px;
    }
    
    .tree input {
        position: absolute;
        clip: rect(0, 0, 0, 0);
    }
    
    .tree input~ul {
        display: none;
    }
    
    .tree input:checked~ul {
        display: block;
    }
    /* ————————————————————–
    Tree rows
    */
    
    ul.tree {
        padding: 0;
    }
    
    .tree li {
        line-height: 1.2;
        position: relative;
        padding: 0 0 1em 1em !important;
    }
    
    .tree ul li {
        padding: 1em 0 0 1em !important;
        list-style-type: none !important;
    }
    
    .tree li>ul {
        padding: 0;
    }
    
    .tree>li:last-child {
        padding-bottom: 0;
    }
    /* ————————————————————–
  Tree labels
*/
    
    .tree_label {
        position: relative;
        display: inline-block;
        background: #fff;
        margin-bottom: 0;
    }
    
    label.tree_label {
        cursor: pointer;
    }
    
    label.tree_label:hover {
        color: #666;
    }
    /* ————————————————————–
  Tree expanded icon
*/
    
    label.tree_label:before {
        background: #000;
        color: #fff;
        position: relative;
        z-index: 1;
        float: left;
        margin: 0 1em 0 -2em;
        width: 1em;
        height: 1em;
        border-radius: 1em;
        content: '+';
        text-align: center;
        line-height: .9em;
    }
    
     :checked~label.tree_label:before {
        content: '–';
    }
    /* ————————————————————–
  Tree branches
*/
    
    .tree li:before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: -.5em;
        display: block;
        width: 0;
        border-left: 1px solid #777;
        content: "";
    }
    
    .tree_label:after {
        position: absolute;
        top: 0;
        display: block;
        height: 0.5em;
        width: 1em;
        border-bottom: 1px solid #777;
        border-left: 1px solid #777;
        border-radius: 0 0 0 .3em;
        content: '';
    }
    
    span.tree_label:after {
        left: -1.5em;
    }
    
    label.tree_label:after {
        border-bottom: 0;
        left: -1.4em;
    }
    
     :checked~label.tree_label:after {
        border-radius: 0 .3em 0 0;
        border-top: 1px solid #777;
        border-right: 1px solid #777;
        border-bottom: 0;
        border-left: 0;
        bottom: 0;
        top: 0.5em;
        height: auto;
    }
    
    .tree li:last-child:before {
        height: 1em;
        bottom: auto;
    }
    
    .tree>li:last-child:before {
        display: none;
    }
    
    .tree_custom {
        display: block;
        background: #eee;
        padding: 1em;
        border-radius: 0.3em;
    }
    
    .none {
        display: none !important;
    }
    
    .element-detail-box {
        padding: 10px;
        /* background: #ccc; */
    }
    
    .faq-answer {
        margin-top: 3px;
    }
    
    .faq-item {
        padding: 0 20px 0 20px;
    }
    
    .faqPad {
        padding: 20px 0 0 0;
    }
    li.active i {
        color:red;
    }

    ul.nav-tabs a > i 
    {
        margin:0 0 0 10px;
    }

    .nav-tabs{
        transition: all 0.3s ease;
    }

</style>
<div class="row wrapper border-bottom white-bg page-heading">
    <div class="col-lg-10">
        <h2>Gedung Ilmu</h2>
        <ol class="breadcrumb">
            <li>
                <a href="index.html">Home</a>
            </li>
            <li>
                <a>Bantuan Dan Sokongan</a>
            </li>
            <li class="active">
                <strong>Gedung Ilmu</strong>
            </li>
        </ol>
    </div>
</div>
<div class="fh-breadcrumb">

    <div class="fh-column">
        <div class="full-height-scroll faqPad">
            <!-- faq -->
            <div class="faq-item">
                <div class="row">
                    <div class="col-md-12">
                        <a data-toggle="collapse" data-tab="tab-c1" href="#faq1" class="list-group-item" aria-expanded="true"> <i class="fa fa-map-marker"></i><span id="hit"> Panduan 1</span></a>
                        <!-- <small>Added by <strong>Alex Smith</strong> <i class="fa fa-clock-o"></i> Today 2:40 pm - 24.06.2014</small> -->
                    </div>
                </div>
                <div class="row">
                    <div class="col-lg-12">
                        <div id="faq1" class="panel-collapse collapse" aria-expanded="true">
                            <div class="faq-answer">
                                <!-- custom tree -->
                                <ul class="tree">
                                    <li>
                                        <input type="checkbox" checked="checked" id="c1" />
                                        <label class="tree_label" for="c1">Level 0</label>
                                        <ul>
                                            <li>
                                                <input type="checkbox" checked="checked" id="c2" />
                                                <label for="c2" class="tree_label">Level 1</label>
                                                <ul>
                                                    <li><span class="tree_label"><a data-toggle="tab" href="#tab-3">Level 2</a></span></li>
                                                    <li><span class="tree_label">Level 2</span></li>
                                                </ul>
                                            </li>
                                            <li>
                                                <input type="checkbox" id="c3" />
                                                <label for="c3" class="tree_label">Looong level 1 <br/>label text <br/>with line-breaks</label>
                                                <ul>
                                                    <li><span class="tree_label">Level 2</span></li>
                                                    <li>
                                                        <input type="checkbox" id="c4" />
                                                        <label for="c4" class="tree_label"><span class="tree_custom">Specified tree item view</span></label>
                                                        <ul>
                                                            <li><span class="tree_label">Level 3</span></li>
                                                            <li>
                                                                <input type="checkbox" id="c20" />
                                                                <label for="c20" class="tree_label"><span class="tree_custom">Specified tree item view</span></label>

                                                                <ul>
                                                                    <li><span class="tree_label">Level 4</span></li>
                                                                </ul>
                                                            </li>
                                                        </ul>
                                                    </li>
                                                </ul>
                                            </li>
                                        </ul>
                                    </li>

                                    <li>
                                        <input type="checkbox" id="c5" />
                                        <label class="tree_label" for="c5">Level 0</label>
                                        <ul>
                                            <li>
                                                <input type="checkbox" id="c6" />
                                                <label for="c6" class="tree_label">Level 1</label>
                                                <ul>
                                                    <li><span class="tree_label">Level 2</span></li>
                                                </ul>
                                            </li>
                                            <li>
                                                <input type="checkbox" id="c7" />
                                                <label for="c7" class="tree_label">Level 1</label>
                                                <ul>
                                                    <li><span class="tree_label">Level 2</span></li>
                                                    <li>
                                                        <input type="checkbox" id="c8" />
                                                        <label for="c8" class="tree_label">Level 2</label>
                                                        <ul>
                                                            <li><span class="tree_label">Level 3</span></li>
                                                        </ul>
                                                    </li>
                                                </ul>
                                            </li>
                                        </ul>
                                    </li>
                                </ul>
                                <!-- ennddd -->

                            </div>
                        </div>
                    </div>
                </div>
            </div>

            <!-- faq -->
            <div class="faq-item">
                <div class="row">
                    <div class="col-md-12">
                        <a data-toggle="collapse" data-tab="tab-c2" href="#faq2" class="list-group-item" aria-expanded="true"> <i class="fa fa-map-marker"></i> Panduan 2</a>
                        <!-- <small>Added by <strong>Alex Smith</strong> <i class="fa fa-clock-o"></i> Today 2:40 pm - 24.06.2014</small> -->
                    </div>
                    <!-- <div class="col-md-3">
                            <span class="small font-bold">Robert Nowak</span>
                            <div class="tag-list">
                                <span class="tag-item">General</span>
                                <span class="tag-item">License</span>
                            </div>
                        </div> -->
                    <!-- <div class="col-md-2 text-right">
                            <span class="small font-bold">Voting </span><br> 42
                        </div> -->
                </div>
                <div class="row">
                    <div class="col-lg-12">
                        <div id="faq2" class="panel-collapse collapse" aria-expanded="true">
                            <div class="faq-answer">
                                <!-- custom tree -->
                                <ul class="tree">
                                    <li>
                                        <input type="checkbox" checked="checked" id="c1" />
                                        <label class="tree_label" for="c1">Level 0</label>
                                        <ul>
                                            <li>
                                                <input type="checkbox" checked="checked" id="c2" />
                                                <label for="c2" class="tree_label">Level 1</label>
                                                <ul>
                                                    <li><span class="tree_label"><a data-toggle="tab" href="#tab-3">Level 2</a></span></li>
                                                    <li><span class="tree_label">Level 2</span></li>
                                                </ul>
                                            </li>
                                            <li>
                                                <input type="checkbox" id="c3" />
                                                <label for="c3" class="tree_label">Looong level 1 <br/>label text <br/>with line-breaks</label>
                                                <ul>
                                                    <li><span class="tree_label">Level 2</span></li>
                                                    <li>
                                                        <input type="checkbox" id="c4" />
                                                        <label for="c4" class="tree_label"><span class="tree_custom">Specified tree item view</span></label>
                                                        <ul>
                                                            <li><span class="tree_label">Level 3</span></li>
                                                        </ul>
                                                    </li>
                                                </ul>
                                            </li>
                                        </ul>
                                    </li>

                                    <li>
                                        <input type="checkbox" id="c5" />
                                        <label class="tree_label" for="c5">Level 0</label>
                                        <ul>
                                            <li>
                                                <input type="checkbox" id="c6" />
                                                <label for="c6" class="tree_label">Level 1</label>
                                                <ul>
                                                    <li><span class="tree_label">Level 2</span></li>
                                                </ul>
                                            </li>
                                            <li>
                                                <input type="checkbox" id="c7" />
                                                <label for="c7" class="tree_label">Level 1</label>
                                                <ul>
                                                    <li><span class="tree_label">Level 2</span></li>
                                                    <li>
                                                        <input type="checkbox" id="c8" />
                                                        <label for="c8" class="tree_label">Level 2</label>
                                                        <ul>
                                                            <li><span class="tree_label">Level 3</span></li>
                                                        </ul>
                                                    </li>
                                                </ul>
                                            </li>
                                        </ul>
                                    </li>
                                </ul>
                                <!-- ennddd -->

                            </div>
                        </div>
                    </div>
                </div>
            </div>


 <!-- faq -->
 <div class="faq-item">
                <div class="row">
                    <div class="col-md-12">
                        <a data-toggle="collapse" data-tab="tab-c3" href="#faq3" class="list-group-item" aria-expanded="true"> <i class="fa fa-map-marker"></i> Panduan 3</a>
                        <!-- <small>Added by <strong>Alex Smith</strong> <i class="fa fa-clock-o"></i> Today 2:40 pm - 24.06.2014</small> -->
                    </div>
                </div>
                <div class="row">
                    <div class="col-lg-12">
                        <div id="faq3" class="panel-collapse collapse" aria-expanded="true">
                            <div class="faq-answer">
                                <!-- custom tree -->
                                <ul class="tree">
                                    <li>
                                        <input type="checkbox" checked="checked" id="c1" />
                                        <label class="tree_label" for="c1">Level 0</label>
                                        <ul>
                                            <li>
                                                <input type="checkbox" checked="checked" id="c2" />
                                                <label for="c2" class="tree_label">Level 1</label>
                                                <ul>
                                                    <li><span class="tree_label"><a data-toggle="tab" href="#tab-3">Level 2</a></span></li>
                                                    <li><span class="tree_label">Level 2</span></li>
                                                </ul>
                                            </li>
                                            <li>
                                                <input type="checkbox" id="c3" />
                                                <label for="c3" class="tree_label">Looong level 1 <br/>label text <br/>with line-breaks</label>
                                                <ul>
                                                    <li><span class="tree_label">Level 2</span></li>
                                                    <li>
                                                        <input type="checkbox" id="c4" />
                                                        <label for="c4" class="tree_label"><span class="tree_custom">Specified tree item view</span></label>
                                                        <ul>
                                                            <li><span class="tree_label">Level 3</span></li>
                                                            <li>
                                                                <input type="checkbox" id="c20" />
                                                                <label for="c20" class="tree_label"><span class="tree_custom">Specified tree item view</span></label>

                                                                <ul>
                                                                    <li><span class="tree_label">Level 4</span></li>
                                                                </ul>
                                                            </li>
                                                        </ul>
                                                    </li>
                                                </ul>
                                            </li>
                                        </ul>
                                    </li>

                                    <li>
                                        <input type="checkbox" id="c5" />
                                        <label class="tree_label" for="c5">Level 0</label>
                                        <ul>
                                            <li>
                                                <input type="checkbox" id="c6" />
                                                <label for="c6" class="tree_label">Level 1</label>
                                                <ul>
                                                    <li><span class="tree_label">Level 2</span></li>
                                                </ul>
                                            </li>
                                            <li>
                                                <input type="checkbox" id="c7" />
                                                <label for="c7" class="tree_label">Level 1</label>
                                                <ul>
                                                    <li><span class="tree_label">Level 2</span></li>
                                                    <li>
                                                        <input type="checkbox" id="c8" />
                                                        <label for="c8" class="tree_label">Level 2</label>
                                                        <ul>
                                                            <li><span class="tree_label">Level 3</span></li>
                                                        </ul>
                                                    </li>
                                                </ul>
                                            </li>
                                        </ul>
                                    </li>
                                </ul>
                                <!-- ennddd -->

                            </div>
                        </div>
                    </div>
                </div>
            </div>




        </div>
    </div>

    <div class="full-height">
        <div class="full-height-scroll bg-muted border-left">

            <div class="element-detail-box">
                <!-- custom content -->

                <div class="col-lg-12">
                    <div class="tabs-container">
                        <ul class="nav nav-tabs">
                            <li>
                                <a style="display:none"  data-toggle="tab" href="#tab-c1" aria-expanded="true"><span id="hit"> Panduan 1</span><i class="fa fa-times-circle"></i></a>
                            </li>
                            <li>
                                <a style="display:none"  data-toggle="tab" href="#tab-c2" aria-expanded="true"><span id="hit"> Panduan 2</span><i class="fa fa-times-circle"></i></a>
                            </li>
                            <li>
                                <a style="display:none"  data-toggle="tab" href="#tab-c3" aria-expanded="true"><span id="hit"> Panduan 3</span><i class="fa fa-times-circle"></i></a>
                            </li>
                            <!-- <li class=""><a data-toggle="tab" href="#tab-4" aria-expanded="false"><i class="fa fa-desktop"></i></a></li>
                            <li class=""><a data-toggle="tab" href="#tab-5" aria-expanded="false"><i class="fa fa-database"></i></a></li> -->
                        </ul>
                        <div class="tab-content">
                            <div id="tab-c1" class="tab-pane">
                                <div class="panel-body">
                                    <strong>Lorem ipsum dolor sit amet, consectetuer adipiscing</strong>

                                    <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart. I am alone, and feel the charm of existence in this spot, which was created for the
                                        bliss of souls like mine.</p>

                                    <p>I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment; and yet I feel that I
                                        never was a greater artist than now. When.</p>
                                </div>
                            </div>
                            <div id="tab-c2" class="tab-pane">
                                <div class="panel-body">
                                    <strong>Donec quam felis</strong>

                                    <p>Thousand unknown plants are noticed by me: when I hear the buzz of the little world among the stalks, and grow familiar with the countless indescribable forms of the insects and flies, then I feel the presence of the
                                        Almighty, who formed us in his own image, and the breath </p>

                                    <p>I am alone, and feel the charm of existence in this spot, which was created for the bliss of souls like mine. I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect
                                        my talents. I should be incapable of drawing a single stroke at the present moment; and yet.</p>
                                </div>
                            </div>
                            <div id="tab-c3" class="tab-pane ">
                                <div class="panel-body">
                                    <strong>Donec quam felis 3</strong>

                                    <p>Thousand unknown plants are noticed by me: when I hear the buzz of the little world among the stalks, and grow familiar with the countless indescribable forms of the insects and flies, then I feel the presence of the
                                        Almighty, who formed us in his own image, and the breath </p>

                                    <p>I am alone, and feel the charm of existence in this spot, which was created for the bliss of souls like mine. I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect
                                        my talents. I should be incapable of drawing a single stroke at the present moment; and yet.</p>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>

                <!-- endd -->

                
            </div>
        </div>
    </div>
</div>
<div class="footer">
    <div class="pull-right">
        10GB of <strong>250GB</strong> Free.
    </div>
    <div>
        <strong>Copyright</strong> Example Company &copy; 2014-2017
    </div>
</div>