// Use specific customization for sites var configPaths = {}; if(location.hostname.indexOf("benweet.github.") === 0) { configPaths.custo = 'custo.github'; } // RequireJS configuration requirejs.config({ waitSeconds: 0, paths: configPaths, shim: { 'jquery-ui': ['jquery'], 'bootstrap': ['jquery'], 'jgrowl': ['jquery'], 'layout': ['jquery-ui'], 'Markdown.Sanitizer': ['Markdown.Converter'], 'Markdown.Editor': ['Markdown.Sanitizer'] } }); require(["jquery", "core"], function($, core) { $(function() { // If browser has detected a new application cache. if (window.applicationCache && window.applicationCache.status === window.applicationCache.UPDATEREADY) { window.applicationCache.swapCache(); window.location.reload(); return; } core.init(); }); });