Fixes jquery http links

Changes
http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js
into
https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js

to help in SSL compatibility and avoir mixed content on jquery
This commit is contained in:
Old-Fart
2016-07-12 16:52:11 -04:00
parent 84ea8bf4ad
commit 60f523cc1e
12 changed files with 84 additions and 84 deletions

View File

@@ -28,7 +28,7 @@
<link href="{{asset("lb-faveo/plugins/filebrowser/plugin.js")}}" rel="stylesheet" type="text/css" />
<link type="text/css" href="{{asset("lb-faveo/css/jquery.ui.css")}}" rel="stylesheet">
<link type="text/css" href="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap.css")}}" rel="stylesheet">
<link href="{{asset("lb-faveo/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css")}}" rel="stylesheet" type="text/css" />
<link href="{{asset("lb-faveo/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css")}}" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="{{asset("lb-faveo/css/faveo-css.css")}}">
<link rel="stylesheet" type="text/css" href="{{asset("lb-faveo/css/notification-style.css")}}">
@@ -52,7 +52,7 @@
<?php
$company = App\Model\helpdesk\Settings\Company::where('id', '=', '1')->first();
if ($company != null) {
}
$replacetop = 0;
$replacetop = \Event::fire('service.desk.agent.topbar.replace', array());
@@ -90,7 +90,7 @@
<li @yield('Users')><a data-target="#tabB" href="#">{!! Lang::get('lang.users') !!}</a></li>
<li @yield('Tickets')><a data-target="#tabC" href="#">{!! Lang::get('lang.tickets') !!}</a></li>
<li @yield('Tools')><a data-target="#tabD" href="#">{!! Lang::get('lang.tools') !!}</a></li>
@else
@else
<?php \Event::fire('service.desk.agent.topbar', array()); ?>
@endif
</ul>
@@ -171,12 +171,12 @@
@if(Auth::user())
<img src="{{Auth::user()->profile_pic}}"class="user-image" alt="User Image"/>
<span class="hidden-xs">{{Auth::user()->first_name." ".Auth::user()->last_name}}</span>
@endif
@endif
</a>
<ul class="dropdown-menu">
<!-- User image -->
<li class="user-header" style="background-color:#343F44;">
<img src="{{Auth::user()->profile_pic}}" class="img-circle" alt="User Image" />
<li class="user-header" style="background-color:#343F44;">
<img src="{{Auth::user()->profile_pic}}" class="img-circle" alt="User Image" />
<p>
{{Auth::user()->first_name." ".Auth::user()->last_name}} - {{Auth::user()->role}}
<small></small>
@@ -367,7 +367,7 @@
<?php
$agent_group = Auth::user()->assign_group;
$group = App\Model\helpdesk\Agent\Groups::where('id', '=', $agent_group)->where('group_status', '=', '1')->first();
// dd($group);
// dd($group);
?>
<!-- Right side column. Contains the navbar and content of the page -->
<div class="content-wrapper">
@@ -435,7 +435,7 @@
<strong>{!! Lang::get('lang.copyright') !!} &copy; {!! date('Y') !!} <a href="{!! $company->website !!}" target="_blank">{!! $company->company_name !!}</a>.</strong> {!! Lang::get('lang.all_rights_reserved') !!}. {!! Lang::get('lang.powered_by') !!} <a href="http://www.faveohelpdesk.com/" target="_blank">Faveo</a>
</footer>
</div><!-- ./wrapper -->
{{-- // <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> --}}
{{-- // <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> --}}
<script src="{{asset("lb-faveo/js/ajax-jquery.min.js")}}"></script>