UNPKG

sheercms

Version:

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

26 lines (21 loc) 638 B
app.controller('GalleryViewController', function($scope, $modal, ContentService) { $scope.viewData = { }; $scope.previewImage = function(item) { var modalInstance = $modal.open({ templateUrl: 'ImagePreviewDialog', controller: ImagePreviewDialogController, windowClass: 'xlarge-dialog', resolve: { item: function () { return item; } } }); modalInstance.result.then(function (value) { //ok clicked }, function () { //modal cancelled }); }; });