|
"use strict";
|
|
(function () {
|
|
'use strict';
|
|
angular.module('knowledgeArticleModule')
|
|
.controller('KnowledgeNewTabController', ['$state',
|
|
function ($state) {
|
|
$state.go('knowledge', {
|
|
id: $state.params.id,
|
|
preventIncrement: $state.params.preventIncrement
|
|
});
|
|
}
|
|
]);
|
|
})();
|