Loading lib/jsduck/tag/chainable.rb 0 → 100644 +14 −0 Original line number Diff line number Diff line require "jsduck/meta_tag" module JsDuck::Tag # Implementation of @chainable tag class Chainable < JsDuck::MetaTag def initialize @name = "chainable" @key = :chainable @signature = {:long => "chainable", :short => ">"} # show small right-arrow @boolean = true end end end template/resources/sass/_mixins.scss +2 −0 Original line number Diff line number Diff line Loading @@ -128,6 +128,8 @@ background-color: transparent; border: 1px solid #aa0000; text-decoration: line-through; } &.chainable { background-color: #00aa00; } &.static { background-color: $docs-text-color; } &.required { Loading Loading
lib/jsduck/tag/chainable.rb 0 → 100644 +14 −0 Original line number Diff line number Diff line require "jsduck/meta_tag" module JsDuck::Tag # Implementation of @chainable tag class Chainable < JsDuck::MetaTag def initialize @name = "chainable" @key = :chainable @signature = {:long => "chainable", :short => ">"} # show small right-arrow @boolean = true end end end
template/resources/sass/_mixins.scss +2 −0 Original line number Diff line number Diff line Loading @@ -128,6 +128,8 @@ background-color: transparent; border: 1px solid #aa0000; text-decoration: line-through; } &.chainable { background-color: #00aa00; } &.static { background-color: $docs-text-color; } &.required { Loading