SmartIT_Extensions/BMC/smart-it-full-helix/scripts/app/knowledge-article/knowledge-new-tab-controlle...

14 lines
360 B
JavaScript

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