Skip to content

Commit

Permalink
Couple JSDoc tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
gashcrumb committed Nov 26, 2013
1 parent a62c0e9 commit d8e1f7d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
12 changes: 10 additions & 2 deletions hawtio-web/src/main/webapp/app/branding/js/brandingPlugin.ts
Expand Up @@ -5,8 +5,13 @@ module Core {

/**
* Ensure whatever value is passed in is converted to a boolean
* Added here because it's needed for the below stuff...
* @method
*
* In the branding module for now as it's needed before bootstrap
*
* @method parseBooleanValue
* @for Core
* @param {any} value
* @return {Boolean}
*/
export function parseBooleanValue(value):boolean {
if (!angular.isDefined(value)) {
Expand Down Expand Up @@ -39,7 +44,10 @@ module Core {
}

/**
* The Red Hat hawtio theme
*
* @module Branding
* @main Branding
*/
module Branding {

Expand Down
Expand Up @@ -122,6 +122,7 @@ module Dashboard {
* dashboard repository
*
* @class DefaultDashboardRepository
* @uses DashboardRepository
*/
export class DefaultDashboardRepository implements DashboardRepository {
constructor(public workspace:Workspace, public jolokia, public localStorage) {
Expand Down Expand Up @@ -200,6 +201,7 @@ module Dashboard {

/**
* @class LocalDashboardRepository
* @uses DashboardRepository
*/
export class LocalDashboardRepository implements DashboardRepository {

Expand Down Expand Up @@ -289,6 +291,7 @@ module Dashboard {

/**
* @class GitDashboardRepository
* @uses DashboardRepository
*/
export class GitDashboardRepository implements DashboardRepository {
constructor(public workspace:Workspace, public git:Git.GitRepository) {
Expand Down

0 comments on commit d8e1f7d

Please sign in to comment.