Devel-hdb
view release on metacpan or search on metacpan
lib/Devel/hdb/html/bootstrap.css view on Meta::CPAN
/*!
* Bootstrap v2.3.0
*
* Copyright 2012 Twitter, Inc
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
*/.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;wi...
lib/Devel/hdb/html/debugger.css view on Meta::CPAN
cursor: default;
}
.program-code .lineno {
width: 5%;
display: inline-block;
text-align: center;
}
.program-code .lineno span { /* The circle/ellipse indicating a breakpoint/action */
padding-bottom: 1px;
border-radius: 50% 50%;
border: 1px solid transparent;
/* padding: 2px; */
}
.program-code .code {
width: 94%;
padding-bottom: 1px;
display: inline-block;
}
.program-code .code-line {
font-size:0.875em;
lib/Devel/hdb/html/debugger.css view on Meta::CPAN
float: left;
width: 100%;
}
.container-column {
position: relative;
float: left;
}
#drag-divider {
width: 3px;
float: left;
background: transparent;
cursor: col-resize;
margin-right: -4px;
display: inline-block;
z-index: 10;
}
#ghost-divider {
width: 3px;
background: black;
opacity: 0.5;
position: absolute;
lib/Devel/hdb/html/handlebars.js view on Meta::CPAN
// don't escape SafeStrings, since they're already safe
if (string instanceof SafeString) {
return string.toString();
} else if (string == null) {
return "";
} else if (!string) {
return string + '';
}
// Force a string conversion as this will be done by the append regardless and
// the regex test will do this transparently behind the scenes, causing issues if
// an object's to string has escaped characters in it.
string = "" + string;
if(!possible.test(string)) { return string; }
return string.replace(badChars, escapeChar);
}
__exports__.escapeExpression = escapeExpression;function isEmpty(value) {
if (!value && value !== 0) {
return true;
( run in 0.418 second using v1.01-cache-2.11-cpan-0a6323c29d9 )