Forum Discussion
_anomDiebolt_
8 years agoQrew Elite
>I still get unsafe script warnings for http://www.quickbase.com/js/mustache-0.5.0.js
You are using mixed content here - the error should go away if you use https instead of http.
Also if you are using Mustache on a QuickBase page Mustache is already loaded! To prove this just paste code into the console:
You are using mixed content here - the error should go away if you use https instead of http.
Also if you are using Mustache on a QuickBase page Mustache is already loaded! To prove this just paste code into the console:
var person = {
firstName: "Christophe",
lastName: "Coenraets",
blogURL: "http://coenraets.org";
};
var template = "<h1>{{firstName}} {{lastName}}</h1>Blog: {{blogURL}}";
var html = Mustache.to_html(template, person);
console.log(html);
// output: <h1>Christophe Coenraets</h1>Blog: http://coenraets.org