You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
"use strict";
|
|
/*global ajaxify*/
|
|
|
|
(function(ajaxify) {
|
|
|
|
ajaxify.variables = {};
|
|
|
|
ajaxify.variables.parse = function() {
|
|
var dataEl = $('#ajaxify-data');
|
|
if (dataEl.length) {
|
|
ajaxify.data = JSON.parse(dataEl.text());
|
|
dataEl.remove();
|
|
}
|
|
};
|
|
}(ajaxify || {}));
|