UNPKG

vormjs

Version:

Write your forms in JSON and HTML, use the same API.

18 lines (10 loc) 256 B
/*global angular*/ (function ( ) { angular.module('vorm') .factory('VormValueScope', [ '$rootScope', function ( $rootScope ) { return function ( ) { const scope = $rootScope.$new(); return scope; }; }]); })();