Sha256: 8b224c3ec52d39a8320be46af529eadd8f396c40ac3f899373e6961b2a33380a
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
(function(){ var baseURL = $("#app-content").data("baseurl"); var railsURL = $("#app-content").data("railsurl"); var railsPath = function() { var currentURL = window.location.toString(); return currentURL.replace(baseURL, ""); } var currentRailsPath = function() { return $("#rails-path").data("path"); } function fill(url) { return $.ajax({url: url, type: "GET", xhrFields: { withCredentials: true }}).done(fillContent); } function fillContent(content) { $("#app-content").html(content); } function storeURLInHistory() { window.history.pushState(null, null, baseURL + currentRailsPath()); } function handleLinks(event) { event.preventDefault(); var url, url_or_path; url_or_path = String(event.currentTarget.getAttribute("href")); // if url_or_path starts with a slash assume it's a path if (url_or_path.match(/^\//)) { url = railsURL + url_or_path; } else { url = url_or_path; } fill(url).then(storeURLInHistory); } $(document).on("click", "#app-content a:not([target=\"_blank\"])", handleLinks); $(document).on("ajax:success", "#app-content form", function(e, data, status, xhr) { fillContent(data); storeURLInHistory(); }); window.onpopstate = function(event) { var currentURL = document.location.toString(); fill(currentURL.replace(baseURL, railsURL)); }; // inital loading $(function() { fill(railsURL + railsPath()).then(storeURLInHistory); }); })(jQuery);
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
better_frame-0.1.2 | app/assets/javascripts/better_frame/better_frame.js |