UNPKG

sheercms

Version:

Sheer Cliff CMS is a simple and powerful content management system (CMS) for Node JS.

16 lines (11 loc) 309 B
var RawValueDialogController = function ($scope, $modalInstance, rawValue) { $scope.data = { rawValue: rawValue }; $scope.ok = function() { $modalInstance.close($scope.data.rawValue); }; $scope.cancel = function () { $modalInstance.dismiss('cancel'); }; };