ohmyform/base_bak/services/current-form.client.service.js
2017-09-20 15:18:19 -07:00

18 lines
342 B
JavaScript

'use strict';
//Forms service used for communicating with the forms REST endpoints
angular.module('forms').service('CurrentForm',
function(){
//Private variables
var _form = {};
//Public Methods
this.getForm = function() {
return _form;
};
this.setForm = function(form) {
_form = form;
};
}
);