Current File : //proc/self/root/usr/local/jetapps/var/www/jetbackup5/docroot/app/showcase/example/controller.js
'use strict';

define([
	'app',
	], function(app) {
	app.controller("generalSettings200",
		["$rootScope", "$scope","lang", "$location", "$timeout", "jetapi", "meta",
			function ($rootScope, $scope, lang, $location, $timeout, jetapi, meta) {

				$scope.$on('save', function () {
					$rootScope.$emit("approve", "200_generalSettings");
				});
			}
		]
	);
});