newscoop/JS-Scoopwriter

View on GitHub
app/scripts/controllers/pane-info.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

/**
* AngularJS controller for the Info pane.
*
* @class PaneInfoCtrl
*/
angular.module('authoringEnvironmentApp').controller('PaneInfoCtrl', [
    'article',
    function (articleService) {
        var self = this;
        self.article = articleService.articleInstance;
    }
]);