2016-07-06 16 views
0

Was ist der mögliche Grund dafür, dass Summernote.js-Bibliothek lokal arbeitet, aber nicht auf Produktion? Ich benutze CDN für sie, überprüfe mein Code:Summernote funktioniert auf lokaler, aber nicht auf Produktion

<head> 
<meta charset="utf-8"> 
<meta http-equiv="X-UA-Compatible" content="IE=edge"> 
<meta name="viewport" content="width=device-width, initial-scale=1"> 
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> 
<meta name="csrf-token" content="{{ csrf_token() }}" /> 
<title>{{ env('APP_NAME') }} | @yield('title')</title> 

<!-- Favicon --> 
<link rel="favicon icon" href="{{ asset('public/favicon.ico') }}"> 

<!-- Styles --> 
<!-- include libraries(jQuery, bootstrap) --> 
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.css" rel="stylesheet"> 

<!-- include summernote css/js--> 
<link href="http://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.1/summernote.css" rel="stylesheet"> 
<!-- End Styles --> 

und rechts oben Schließen des Body-Tag

<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.js"></script> 
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.js"></script> 
<script src="http://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.1/summernote.js"></script> 
<script> 
    $(document).ready(function() { 
     $('#summernote').summernote({ 
      height: 300, 
      dialogsInBody: true 
     }); 
    }); 
</script> 
<!-- End Scripts --> 

Antwort

0

Ich habe es geschafft, das Problem herauszufinden. Ich bin mit SSL-Zertifikat für meinen Web-App, also musste ich die URLs von http zu https

ich diese Antwort hilfreich sein wird für weitere Entwickler hoffen, ändern!