aboutsummaryrefslogtreecommitdiff
path: root/src/js/firefox/js/platform-ajax.js
blob: 9b80633efa4c7fb01eeee1ec3e11b043d49c7652 (plain)
1
2
3
4
5
6
7
8
9
10

/**
 * Placeholder function, as all ajax should be done in the backend
 */
var fiveui      = fiveui      || {};
fiveui.ajax     = fiveui.ajax || {};

fiveui.ajax.get = function () {
  return $.Deferred().promise();
};