path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
sections/sentence/sentence-manual.html | PanCheng111/XDF_Personal_Analysis | <template class="task-template">
<section id="sentence-manual-section" class="section js-section u-category-communication">
<header class="section-header">
<div class="section-wrapper">
<h1>
<svg class="section-icon"><use xlink:href="assets/img/icons.svg#icon-communication"></use></svg>
录入不同层次的话术
</h1>
<h3> 在本页面录入 <code>Excel</code> 格式(xls/xlsx)的不同层次的得分对应的话术</h3>
<p>需要给出本次考试中不同题型分数段对应的话术,以便生成每位考生的个性化分析结果。</p>
</div>
</header>
<div class="demo">
<div class="demo-wrapper">
<button id="print-pdf-demo-toggle" class="js-container-target demo-toggle-button">暂未开放此功能
<div class="demo-meta u-avoid-clicks">支持: Win, OS X, Linux | 进程: Renderer</div>
</button>
<div class="demo-box">
<!--<div class="demo-controls">
<button class="demo-button" id="screen-shot">点我截图</button>
<span class="demo-response is-selectable" id="screenshot-path"></span>
</div>
<p>🌰 中调用<code>desktopCapturer</code> 模块对全屏做了个截图</p>
<p>点击截图可以截图,同时会用系统默认应用打开这个截图</p>
<h5>渲染进程</h5>
<pre><code data-path="renderer-process/media/desktop-capturer.js"></pre></code>-->
</div>
</div>
</div>
<script type="text/javascript">
require('./renderer-process/sentence/sentence-manual');
</script>
</section>
</template>
|
games/paths-face/index.html | jojoee/phaser-examples | <!DOCTYPE HTML>
<html>
<head>
<title>Path Examples</title>
<meta charset="utf-8">
<script src="//cdn.jsdelivr.net/phaser/2.2.2/phaser.min.js"></script>
</head>
<body>
<div id="game"></div>
<script type="text/javascript">
var game = new Phaser.Game(640, 480, Phaser.AUTO, 'game');
var PhaserGame = function() {
this.bmd = null;
this.arrow = null;
this.mode = 2;
this.points = {
'x': [32, 128, 256, 384, 512, 608],
'y': [240, 240, 240, 240, 240, 240]
};
this.pi = 0;
this.path = [];
};
PhaserGame.prototype = {
init: function() {
this.game.renderer.renderSession.roundPixels = true;
this.stage.backgroundColor = '#204090';
},
preload: function() {
// We need this because the assets are on Amazon S3
// Remove the next 2 lines if running locally
// this.load.baseURL = 'http://files.phaser.io.s3.amazonaws.com/codingtips/issue008/';
this.load.crossOrigin = 'anonymous';
this.load.image('arrow', 'assets/arrow.png');
this.load.bitmapFont('shmupfont', 'assets/shmupfont.png', 'assets/shmupfont.xml');
// Note: Graphics are not for use in any commercial project
},
create: function() {
this.bmd = this.add.bitmapData(this.game.width, this.game.height);
this.bmd.addToWorld();
this.arrow = this.add.sprite(0, 0, 'arrow');
this.arrow.anchor.set(0.5);
var py = this.points.y;
for (var i = 0; i < py.length; i++) {
py[i] = this.rnd.between(32, 432);
}
this.hint = this.add.bitmapText(8, 444, 'shmupfont', "Catmull Rom", 24);
this.input.onDown.add(this.changeMode, this);
this.plot();
},
changeMode: function() {
this.mode++;
if (this.mode === 3) {
this.mode = 0;
}
if (this.mode === 0) {
this.hint.text = "Linear";
} else if (this.mode === 1) {
this.hint.text = "Bezier";
} else if (this.mode === 2) {
this.hint.text = "Catmull Rom";
}
this.plot();
},
plot: function() {
this.bmd.clear();
this.path = [];
var ix = 0;
var x = 1 / game.width;
for (var i = 0; i <= 1; i += x) {
if (this.mode === 0) {
var px = this.math.linearInterpolation(this.points.x, i);
var py = this.math.linearInterpolation(this.points.y, i);
} else if (this.mode === 1) {
var px = this.math.bezierInterpolation(this.points.x, i);
var py = this.math.bezierInterpolation(this.points.y, i);
} else if (this.mode === 2) {
var px = this.math.catmullRomInterpolation(this.points.x, i);
var py = this.math.catmullRomInterpolation(this.points.y, i);
}
var node = {
x: px,
y: py,
angle: 0
};
if (ix > 0) {
node.angle = this.math.angleBetweenPoints(this.path[ix - 1], node);
}
this.path.push(node);
ix++;
this.bmd.rect(px, py, 1, 1, 'rgba(255, 255, 255, 1)');
}
for (var p = 0; p < this.points.x.length; p++) {
this.bmd.rect(this.points.x[p] - 3, this.points.y[p] - 3, 6, 6, 'rgba(255, 0, 0, 1)');
}
},
update: function() {
this.arrow.x = this.path[this.pi].x;
this.arrow.y = this.path[this.pi].y;
this.arrow.rotation = this.path[this.pi].angle;
this.pi++;
if (this.pi >= this.path.length) {
this.pi = 0;
}
}
};
game.state.add('Game', PhaserGame, true);
</script>
</body>
</html> |
server/public/css/bootstrap-theme.css | mmis1000/web-socket-socket5-proxy | /*!
* Bootstrap v3.2.0 (http://getbootstrap.com)
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
/*!
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=4976f54ac862e6d1d064)
* Config saved to config.json and https://gist.github.com/4976f54ac862e6d1d064
*/
.btn-default,
.btn-primary,
.btn-success,
.btn-info,
.btn-warning,
.btn-danger {
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-default:active,
.btn-primary:active,
.btn-success:active,
.btn-info:active,
.btn-warning:active,
.btn-danger:active,
.btn-default.active,
.btn-primary.active,
.btn-success.active,
.btn-info.active,
.btn-warning.active,
.btn-danger.active {
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn:active,
.btn.active {
background-image: none;
}
.btn-default {
background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
background-image: -o-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
background-image: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
background-repeat: repeat-x;
border-color: #dbdbdb;
text-shadow: 0 1px 0 #fff;
border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus {
background-color: #e0e0e0;
background-position: 0 -15px;
}
.btn-default:active,
.btn-default.active {
background-color: #e0e0e0;
border-color: #dbdbdb;
}
.btn-default:disabled,
.btn-default[disabled] {
background-color: #e0e0e0;
background-image: none;
}
.btn-primary {
background-image: -webkit-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
background-image: -o-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
background-image: linear-gradient(to bottom, #428bca 0%, #2d6ca2 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
background-repeat: repeat-x;
border-color: #2b669a;
}
.btn-primary:hover,
.btn-primary:focus {
background-color: #2d6ca2;
background-position: 0 -15px;
}
.btn-primary:active,
.btn-primary.active {
background-color: #2d6ca2;
border-color: #2b669a;
}
.btn-primary:disabled,
.btn-primary[disabled] {
background-color: #2d6ca2;
background-image: none;
}
.btn-success {
background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
background-repeat: repeat-x;
border-color: #3e8f3e;
}
.btn-success:hover,
.btn-success:focus {
background-color: #419641;
background-position: 0 -15px;
}
.btn-success:active,
.btn-success.active {
background-color: #419641;
border-color: #3e8f3e;
}
.btn-success:disabled,
.btn-success[disabled] {
background-color: #419641;
background-image: none;
}
.btn-info {
background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
background-repeat: repeat-x;
border-color: #28a4c9;
}
.btn-info:hover,
.btn-info:focus {
background-color: #2aabd2;
background-position: 0 -15px;
}
.btn-info:active,
.btn-info.active {
background-color: #2aabd2;
border-color: #28a4c9;
}
.btn-info:disabled,
.btn-info[disabled] {
background-color: #2aabd2;
background-image: none;
}
.btn-warning {
background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
background-repeat: repeat-x;
border-color: #e38d13;
}
.btn-warning:hover,
.btn-warning:focus {
background-color: #eb9316;
background-position: 0 -15px;
}
.btn-warning:active,
.btn-warning.active {
background-color: #eb9316;
border-color: #e38d13;
}
.btn-warning:disabled,
.btn-warning[disabled] {
background-color: #eb9316;
background-image: none;
}
.btn-danger {
background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
background-repeat: repeat-x;
border-color: #b92c28;
}
.btn-danger:hover,
.btn-danger:focus {
background-color: #c12e2a;
background-position: 0 -15px;
}
.btn-danger:active,
.btn-danger.active {
background-color: #c12e2a;
border-color: #b92c28;
}
.btn-danger:disabled,
.btn-danger[disabled] {
background-color: #c12e2a;
background-image: none;
}
.thumbnail,
.img-thumbnail {
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
background-color: #e8e8e8;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
background-image: -o-linear-gradient(top, #428bca 0%, #357ebd 100%);
background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
background-color: #357ebd;
}
.navbar-default {
background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
}
.navbar-default .navbar-nav > .active > a {
background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%);
background-image: -o-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%);
background-image: linear-gradient(to bottom, #ebebeb 0%, #f3f3f3 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff3f3f3', GradientType=0);
-webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
}
.navbar-brand,
.navbar-nav > li > a {
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.navbar-inverse {
background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%);
background-image: -o-linear-gradient(top, #3c3c3c 0%, #222222 100%);
background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.navbar-inverse .navbar-nav > .active > a {
background-image: -webkit-linear-gradient(top, #222222 0%, #282828 100%);
background-image: -o-linear-gradient(top, #222222 0%, #282828 100%);
background-image: linear-gradient(to bottom, #222222 0%, #282828 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff282828', GradientType=0);
-webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
}
.navbar-inverse .navbar-brand,
.navbar-inverse .navbar-nav > li > a {
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.navbar-static-top,
.navbar-fixed-top,
.navbar-fixed-bottom {
border-radius: 0;
}
.alert {
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.alert-success {
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
border-color: #b2dba1;
}
.alert-info {
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
border-color: #9acfea;
}
.alert-warning {
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
border-color: #f5e79e;
}
.alert-danger {
background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
border-color: #dca7a7;
}
.progress {
background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
}
.progress-bar {
background-image: -webkit-linear-gradient(top, #428bca 0%, #3071a9 100%);
background-image: -o-linear-gradient(top, #428bca 0%, #3071a9 100%);
background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);
}
.progress-bar-success {
background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);
background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
}
.progress-bar-info {
background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
}
.progress-bar-warning {
background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
}
.progress-bar-danger {
background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);
background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
}
.progress-bar-striped {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.list-group {
border-radius: 4px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
text-shadow: 0 -1px 0 #3071a9;
background-image: -webkit-linear-gradient(top, #428bca 0%, #3278b3 100%);
background-image: -o-linear-gradient(top, #428bca 0%, #3278b3 100%);
background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0);
border-color: #3278b3;
}
.panel {
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.panel-default > .panel-heading {
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
}
.panel-primary > .panel-heading {
background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
background-image: -o-linear-gradient(top, #428bca 0%, #357ebd 100%);
background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
}
.panel-success > .panel-heading {
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
}
.panel-info > .panel-heading {
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
}
.panel-warning > .panel-heading {
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
}
.panel-danger > .panel-heading {
background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
}
.well {
background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
border-color: #dcdcdc;
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
}
|
clean/Linux-x86_64-4.10.0-2.0.6/released/8.12.0/dblib/8.6.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>dblib: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.12.0 / dblib - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
dblib
<small>
8.6.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-08-26 04:03:56 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-08-26 04:03:56 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.12.0 Formal proof management system
num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.10.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.10.0 Official release 4.10.0
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/dblib"
license: "GPL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Dblib"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: abstract syntax" "keyword: binders" "keyword: de Bruijn indices" "keyword: shift" "keyword: lift" "keyword: substitution" "category: Computer Science/Lambda Calculi" ]
authors: [ "Francois Pottier <francois.pottier@inria.fr> [http://gallium.inria.fr/~fpottier/]" ]
bug-reports: "https://github.com/coq-contribs/dblib/issues"
dev-repo: "git+https://github.com/coq-contribs/dblib.git"
synopsis: "Dblib"
description: """
http://gallium.inria.fr/~fpottier/dblib/README
The dblib library offers facilities for working with de Bruijn indices."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/dblib/archive/v8.6.0.tar.gz"
checksum: "md5=12c880f61010aa9c1c4700fb6a143326"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-dblib.8.6.0 coq.8.12.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.12.0).
The following dependencies couldn't be met:
- coq-dblib -> coq < 8.7~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-dblib.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
docs/partials/api/ngAnimate.html | zensh/serve-ngdocs | <a href='https://github.com/angular/angular.js/edit/master/src/ngAnimate/animate.js?message=docs(ngAnimate)%3A%20describe%20your%20change...#L4' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit"> </i>Improve this Doc</a>
<h1>
<code>ngAnimate</code>
</h1>
<p>The <code>ngAnimate</code> module provides support for JavaScript, CSS3 transition and CSS3 keyframe animation hooks within existing core and custom directives.</p>
<div doc-module-components="ngAnimate"></div>
<h1 id="usage">Usage</h1>
<p>To see animations in action, all that is required is to define the appropriate CSS classes
or to register a JavaScript animation via the <code>myModule.animation()</code> function. The directives that support animation automatically are:
<code>ngRepeat</code>, <code>ngInclude</code>, <code>ngIf</code>, <code>ngSwitch</code>, <code>ngShow</code>, <code>ngHide</code>, <code>ngView</code> and <code>ngClass</code>. Custom directives can take advantage of animation
by using the <code>$animate</code> service.</p>
<p>Below is a more detailed breakdown of the supported animation events provided by pre-existing ng directives:</p>
<table>
<thead>
<tr>
<th>Directive</th>
<th>Supported Animations</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="api/ng/directive/ngRepeat#animations">ngRepeat</a></td>
<td>enter, leave and move</td>
</tr>
<tr>
<td><a href="api/ngRoute/directive/ngView#animations">ngView</a></td>
<td>enter and leave</td>
</tr>
<tr>
<td><a href="api/ng/directive/ngInclude#animations">ngInclude</a></td>
<td>enter and leave</td>
</tr>
<tr>
<td><a href="api/ng/directive/ngSwitch#animations">ngSwitch</a></td>
<td>enter and leave</td>
</tr>
<tr>
<td><a href="api/ng/directive/ngIf#animations">ngIf</a></td>
<td>enter and leave</td>
</tr>
<tr>
<td><a href="api/ng/directive/ngClass#animations">ngClass</a></td>
<td>add and remove (the CSS class(es) present)</td>
</tr>
<tr>
<td><a href="api/ng/directive/ngShow#animations">ngShow</a> & <a href="api/ng/directive/ngHide#animations">ngHide</a></td>
<td>add and remove (the ng-hide class value)</td>
</tr>
<tr>
<td><a href="api/ng/directive/form#animation-hooks">form</a> & <a href="api/ng/directive/ngModel#animation-hooks">ngModel</a></td>
<td>add and remove (dirty, pristine, valid, invalid & all other validations)</td>
</tr>
<tr>
<td><a href="api/ngMessages#animations">ngMessages</a></td>
<td>add and remove (ng-active & ng-inactive)</td>
</tr>
<tr>
<td><a href="api/ngMessages#animations">ngMessage</a></td>
<td>enter and leave</td>
</tr>
</tbody>
</table>
<p>You can find out more information about animations upon visiting each directive page.</p>
<p>Below is an example of how to apply animations to a directive that supports animation hooks:</p>
<pre><code class="lang-html"><style type="text/css">
.slide.ng-enter, .slide.ng-leave {
-webkit-transition:0.5s linear all;
transition:0.5s linear all;
}
.slide.ng-enter { } /* starting animations for enter */
.slide.ng-enter.ng-enter-active { } /* terminal animations for enter */
.slide.ng-leave { } /* starting animations for leave */
.slide.ng-leave.ng-leave-active { } /* terminal animations for leave */
</style>
<!--
the animate service will automatically add .ng-enter and .ng-leave to the element
to trigger the CSS transition/animations
-->
<ANY class="slide" ng-include="..."></ANY>
</code></pre>
<p>Keep in mind that, by default, if an animation is running, any child elements cannot be animated
until the parent element's animation has completed. This blocking feature can be overridden by
placing the <code>ng-animate-children</code> attribute on a parent container tag.</p>
<pre><code class="lang-html"><div class="slide-animation" ng-if="on" ng-animate-children>
<div class="fade-animation" ng-if="on">
<div class="explode-animation" ng-if="on">
...
</div>
</div>
</div>
</code></pre>
<p>When the <code>on</code> expression value changes and an animation is triggered then each of the elements within
will all animate without the block being applied to child elements.</p>
<h2 id="are-animations-run-when-the-application-starts-">Are animations run when the application starts?</h2>
<p>No they are not. When an application is bootstrapped Angular will disable animations from running to avoid
a frenzy of animations from being triggered as soon as the browser has rendered the screen. For this to work,
Angular will wait for two digest cycles until enabling animations. From there on, any animation-triggering
layout changes in the application will trigger animations as normal.</p>
<p>In addition, upon bootstrap, if the routing system or any directives or load remote data (via $http) then Angular
will automatically extend the wait time to enable animations once <strong>all</strong> of the outbound HTTP requests
are complete.</p>
<h2 id="css-defined-animations">CSS-defined Animations</h2>
<p>The animate service will automatically apply two CSS classes to the animated element and these two CSS classes
are designed to contain the start and end CSS styling. Both CSS transitions and keyframe animations are supported
and can be used to play along with this naming structure.</p>
<p>The following code below demonstrates how to perform animations using <strong>CSS transitions</strong> with Angular:</p>
<pre><code class="lang-html"><style type="text/css">
/*
The animate class is apart of the element and the ng-enter class
is attached to the element once the enter animation event is triggered
*/
.reveal-animation.ng-enter {
-webkit-transition: 1s linear all; /* Safari/Chrome */
transition: 1s linear all; /* All other modern browsers and IE10+ */
/* The animation preparation code */
opacity: 0;
}
/*
Keep in mind that you want to combine both CSS
classes together to avoid any CSS-specificity
conflicts
*/
.reveal-animation.ng-enter.ng-enter-active {
/* The animation code itself */
opacity: 1;
}
</style>
<div class="view-container">
<div ng-view class="reveal-animation"></div>
</div>
</code></pre>
<p>The following code below demonstrates how to perform animations using <strong>CSS animations</strong> with Angular:</p>
<pre><code class="lang-html"><style type="text/css">
.reveal-animation.ng-enter {
-webkit-animation: enter_sequence 1s linear; /* Safari/Chrome */
animation: enter_sequence 1s linear; /* IE10+ and Future Browsers */
}
@-webkit-keyframes enter_sequence {
from { opacity:0; }
to { opacity:1; }
}
@keyframes enter_sequence {
from { opacity:0; }
to { opacity:1; }
}
</style>
<div class="view-container">
<div ng-view class="reveal-animation"></div>
</div>
</code></pre>
<p>Both CSS3 animations and transitions can be used together and the animate service will figure out the correct duration and delay timing.</p>
<p>Upon DOM mutation, the event class is added first (something like <code>ng-enter</code>), then the browser prepares itself to add
the active class (in this case <code>ng-enter-active</code>) which then triggers the animation. The animation module will automatically
detect the CSS code to determine when the animation ends. Once the animation is over then both CSS classes will be
removed from the DOM. If a browser does not support CSS transitions or CSS animations then the animation will start and end
immediately resulting in a DOM element that is at its final state. This final state is when the DOM element
has no CSS transition/animation classes applied to it.</p>
<h3 id="structural-transition-animations">Structural transition animations</h3>
<p>Structural transitions (such as enter, leave and move) will always apply a <code>0s none</code> transition
value to force the browser into rendering the styles defined in the setup (<code>.ng-enter</code>, <code>.ng-leave</code>
or <code>.ng-move</code>) class. This means that any active transition animations operating on the element
will be cut off to make way for the enter, leave or move animation.</p>
<h3 id="class-based-transition-animations">Class-based transition animations</h3>
<p>Class-based transitions refer to transition animations that are triggered when a CSS class is
added to or removed from the element (via <code>$animate.addClass</code>, <code>$animate.removeClass</code>,
<code>$animate.setClass</code>, or by directives such as <code>ngClass</code>, <code>ngModel</code> and <code>form</code>).
They are different when compared to structural animations since they <strong>do not cancel existing
animations</strong> nor do they <strong>block successive transitions</strong> from rendering on the same element.
This distinction allows for <strong>multiple class-based transitions</strong> to be performed on the same element.</p>
<p>In addition to ngAnimate supporting the default (natural) functionality of class-based transition
animations, ngAnimate also decorates the element with starting and ending CSS classes to aid the
developer in further styling the element throughout the transition animation. Earlier versions
of ngAnimate may have caused natural CSS transitions to break and not render properly due to
$animate temporarily blocking transitions using <code>0s none</code> in order to allow the setup CSS class
(the <code>-add</code> or <code>-remove</code> class) to be applied without triggering an animation. However, as of
<strong>version 1.3</strong>, this workaround has been removed with ngAnimate and all non-ngAnimate CSS
class transitions are compatible with ngAnimate.</p>
<p>There is, however, one special case when dealing with class-based transitions in ngAnimate.
When rendering class-based transitions that make use of the setup and active CSS classes
(e.g. <code>.fade-add</code> and <code>.fade-add-active</code> for when <code>.fade</code> is added) be sure to define
the transition value <strong>on the active CSS class</strong> and not the setup class.</p>
<pre><code class="lang-css">.fade-add {
/* remember to place a 0s transition here
to ensure that the styles are applied instantly
even if the element already has a transition style */
transition:0s linear all;
/* starting CSS styles */
opacity:1;
}
.fade-add.fade-add-active {
/* this will be the length of the animation */
transition:1s linear all;
opacity:0;
}
</code></pre>
<p>The setup CSS class (in this case <code>.fade-add</code>) also has a transition style property, however, it
has a duration of zero. This may not be required, however, incase the browser is unable to render
the styling present in this CSS class instantly then it could be that the browser is attempting
to perform an unnecessary transition.</p>
<p>This workaround, however, does not apply to standard class-based transitions that are rendered
when a CSS class containing a transition is applied to an element:</p>
<pre><code class="lang-css">/* this works as expected */
.fade {
transition:1s linear all;
opacity:0;
}
</code></pre>
<p>Please keep this in mind when coding the CSS markup that will be used within class-based transitions.
Also, try not to mix the two class-based animation flavors together since the CSS code may become
overly complex.</p>
<h3 id="preventing-collisions-with-third-party-libraries">Preventing Collisions With Third Party Libraries</h3>
<p>Some third-party frameworks place animation duration defaults across many element or className
selectors in order to make their code small and reuseable. This can lead to issues with ngAnimate, which
is expecting actual animations on these elements and has to wait for their completion.</p>
<p>You can prevent this unwanted behavior by using a prefix on all your animation classes:</p>
<pre><code class="lang-css">/* prefixed with animate- */
.animate-fade-add.animate-fade-add-active {
transition:1s linear all;
opacity:0;
}
</code></pre>
<p>You then configure <code>$animate</code> to enforce this prefix:</p>
<pre><code class="lang-js">$animateProvider.classNameFilter(/animate-/);
</code></pre>
<p></div></p>
<h3 id="css-staggering-animations">CSS Staggering Animations</h3>
<p>A Staggering animation is a collection of animations that are issued with a slight delay in between each successive operation resulting in a
curtain-like effect. The ngAnimate module (versions >=1.2) supports staggering animations and the stagger effect can be
performed by creating a <strong>ng-EVENT-stagger</strong> CSS class and attaching that class to the base CSS class used for
the animation. The style property expected within the stagger class can either be a <strong>transition-delay</strong> or an
<strong>animation-delay</strong> property (or both if your animation contains both transitions and keyframe animations).</p>
<pre><code class="lang-css">.my-animation.ng-enter {
/* standard transition code */
-webkit-transition: 1s linear all;
transition: 1s linear all;
opacity:0;
}
.my-animation.ng-enter-stagger {
/* this will have a 100ms delay between each successive leave animation */
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
/* in case the stagger doesn't work then these two values
must be set to 0 to avoid an accidental CSS inheritance */
-webkit-transition-duration: 0s;
transition-duration: 0s;
}
.my-animation.ng-enter.ng-enter-active {
/* standard transition styles */
opacity:1;
}
</code></pre>
<p>Staggering animations work by default in ngRepeat (so long as the CSS class is defined). Outside of ngRepeat, to use staggering animations
on your own, they can be triggered by firing multiple calls to the same event on $animate. However, the restrictions surrounding this
are that each of the elements must have the same CSS className value as well as the same parent element. A stagger operation
will also be reset if more than 10ms has passed after the last animation has been fired.</p>
<p>The following code will issue the <strong>ng-leave-stagger</strong> event on the element provided:</p>
<pre><code class="lang-js">var kids = parent.children();
$animate.leave(kids[0]); //stagger index=0
$animate.leave(kids[1]); //stagger index=1
$animate.leave(kids[2]); //stagger index=2
$animate.leave(kids[3]); //stagger index=3
$animate.leave(kids[4]); //stagger index=4
$timeout(function() {
//stagger has reset itself
$animate.leave(kids[5]); //stagger index=0
$animate.leave(kids[6]); //stagger index=1
}, 100, false);
</code></pre>
<p>Stagger animations are currently only supported within CSS-defined animations.</p>
<h2 id="javascript-defined-animations">JavaScript-defined Animations</h2>
<p>In the event that you do not want to use CSS3 transitions or CSS3 animations or if you wish to offer animations on browsers that do not
yet support CSS transitions/animations, then you can make use of JavaScript animations defined inside of your AngularJS module.</p>
<pre><code class="lang-js">//!annotate="YourApp" Your AngularJS Module|Replace this or ngModule with the module that you used to define your application.
var ngModule = angular.module('YourApp', ['ngAnimate']);
ngModule.animation('.my-crazy-animation', function() {
return {
enter: function(element, done) {
//run the animation here and call done when the animation is complete
return function(cancelled) {
//this (optional) function will be called when the animation
//completes or when the animation is cancelled (the cancelled
//flag will be set to true if cancelled).
};
},
leave: function(element, done) { },
move: function(element, done) { },
//animation that can be triggered before the class is added
beforeAddClass: function(element, className, done) { },
//animation that can be triggered after the class is added
addClass: function(element, className, done) { },
//animation that can be triggered before the class is removed
beforeRemoveClass: function(element, className, done) { },
//animation that can be triggered after the class is removed
removeClass: function(element, className, done) { }
};
});
</code></pre>
<p>JavaScript-defined animations are created with a CSS-like class selector and a collection of events which are set to run
a javascript callback function. When an animation is triggered, $animate will look for a matching animation which fits
the element's CSS class attribute value and then run the matching animation event function (if found).
In other words, if the CSS classes present on the animated element match any of the JavaScript animations then the callback function will
be executed. It should be also noted that only simple, single class selectors are allowed (compound class selectors are not supported).</p>
<p>Within a JavaScript animation, an object containing various event callback animation functions is expected to be returned.
As explained above, these callbacks are triggered based on the animation event. Therefore if an enter animation is run,
and the JavaScript animation is found, then the enter callback will handle that animation (in addition to the CSS keyframe animation
or transition code that is defined via a stylesheet).</p>
<h3 id="applying-directive-specific-styles-to-an-animation">Applying Directive-specific Styles to an Animation</h3>
<p>In some cases a directive or service may want to provide <code>$animate</code> with extra details that the animation will
include into its animation. Let's say for example we wanted to render an animation that animates an element
towards the mouse coordinates as to where the user clicked last. By collecting the X/Y coordinates of the click
(via the event parameter) we can set the <code>top</code> and <code>left</code> styles into an object and pass that into our function
call to <code>$animate.addClass</code>.</p>
<pre><code class="lang-js">canvas.on('click', function(e) {
$animate.addClass(element, 'on', {
to: {
left : e.client.x + 'px',
top : e.client.y + 'px'
}
}):
});
</code></pre>
<p>Now when the animation runs, and a transition or keyframe animation is picked up, then the animation itself will
also include and transition the styling of the <code>left</code> and <code>top</code> properties into its running animation. If we want
to provide some starting animation values then we can do so by placing the starting animations styles into an object
called <code>from</code> in the same object as the <code>to</code> animations.</p>
<pre><code class="lang-js">canvas.on('click', function(e) {
$animate.addClass(element, 'on', {
from: {
position: 'absolute',
left: '0px',
top: '0px'
},
to: {
left : e.client.x + 'px',
top : e.client.y + 'px'
}
}):
});
</code></pre>
<p>Once the animation is complete or cancelled then the union of both the before and after styles are applied to the
element. If <code>ngAnimate</code> is not present then the styles will be applied immediately.</p>
<h2>Installation</h2>
<p>First include <code>angular-animate.js</code> in your HTML:</p>
<pre><code><script src="angular.js"> <script src="angular-animate.js"></code></pre>
<p>You can download this file from the following places:</p>
<ul>
<li>
<a href="https://developers.google.com/speed/libraries/devguide#angularjs">Google CDN</a><br>
e.g. <code>//ajax.googleapis.com/ajax/libs/angularjs/X.Y.Z/angular-animate.js</code>
</li>
<li>
<a href="http://bower.io">Bower</a><br>
e.g. <pre><code>bower install angular-animate@X.Y.Z</code></pre>
</li>
<li>
<a href="http://code.angularjs.org/">code.angularjs.org</a><br>
e.g. <pre><code>"//code.angularjs.org/X.Y.Z/angular-animate.js"</code></pre>
</li>
</ul>
<p>where X.Y.Z is the AngularJS version you are running.</p>
<p>Then load the module in your application by adding it as a dependent module:</p>
<pre><code>angular.module('app', ['ngAnimate']);</code></pre>
<p>With that you're ready to get started!</p>
<div class="component-breakdown">
<h2>Module Components</h2>
<div>
<h3 class="component-heading" id="provider">Provider</h3>
<table class="definition-table">
<tr>
<th>Name</th>
<th>Description</th>
</tr>
<tr>
<td><a href="api/ngAnimate/provider/$animateProvider">$animateProvider</a></td>
<td><p>The <code>$animateProvider</code> allows developers to register JavaScript animation event handlers directly inside of a module.
When an animation is triggered, the $animate service will query the $animate service to find any animations that match
the provided name value.</p>
</td>
</tr>
</table>
</div>
<div>
<h3 class="component-heading" id="service">Service</h3>
<table class="definition-table">
<tr>
<th>Name</th>
<th>Description</th>
</tr>
<tr>
<td><a href="api/ngAnimate/service/$animate">$animate</a></td>
<td><p>The <code>$animate</code> service provides animation detection support while performing DOM operations (enter, leave and move) as well as during addClass and removeClass operations.
When any of these operations are run, the $animate service
will examine any JavaScript-defined animations (which are defined by using the $animateProvider provider object)
as well as any CSS-defined animations against the CSS classes present on the element once the DOM operation is run.</p>
</td>
</tr>
</table>
</div>
</div>
|
edcon-v2.0/2017/chinese/new1_c.html | LinkTimeTech/website | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"/>
<script src="js/jquery-3.1.1.js" type="text/javascript" charset="utf-8"></script>
<script src="js/bootstrap.min.js" type="text/javascript" charset="utf-8"></script>
<style type="text/css">
.navbar-inverse .navbar-nav > .active > a {
background-color: #5cddbf;
}
.navbar-inverse .navbar-nav > .active > a:hover {
background-color: #5cddbf;
}
.navbar-inverse .navbar-nav > .active > a:focus {
background-color: #5cddbf;
}
.navbar-inverse .navbar-nav > li > a {
color: #fff;
}
.navbar-inverse .navbar-nav > li > a:hover {
background-color: #5bc2aA;
}
.navbar-inverse .navbar-nav > li > a:focus {
background-color: #5cddbf;
}
.navbar-nav {
float: right;
}
.navbar {
margin-bottom: 0px;
}
.li li {
margin-bottom: 30px;
}
.b li {
list-style-type: decimal;
}
.a li {
list-style-type: none;
}
.a li a {
border: 1px solid #262626;
display: block;
width: 200px;
height: 40px;
line-height: 40px;
padding-left: 20px;
color: #262626;
}
.a li a:hover {
border: 1px solid #4299f1;
display: block;
width: 200px;
height: 40px;
line-height: 40px;
padding-left: 20px;
color: #4299f1;
text-decoration: none;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse " role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a style="margin: 0px;padding: 0px;margin-left: 100px;" class="navbar-brand" href="#"><img src="img/1.png"
height="50"/></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="home.html">Home</a></li>
<li><a href="why.html">Why attend</a></li>
<li><a href="main.html">Agenda</a></li>
<li><a href="#">Venue&Travel</a></li>
<li><a href="contact.html">Contact</a></li>
<li class="active"><a href="register.html">Register</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class="container-fluid">
<div class="row">
<div class=" col-sm-12 col-md-12 col-lg-12" style="padding-left: 50px;padding-top: 50px;">
<font style="color: #23527C;">Your Position:</font>EDVON > Why attend > Edge Technology . Link the Future
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class=" col-sm-9 col-md-9 col-lg-9 ">
<div style="margin-left: 100px;font-size: 20px;">
<h2 style="color: #4299f1;">Edge Technology,Link the Future</h2>
Our Conference give you a glimpse of the block chain future, get you out of your everyday silos, provide
a different perspective, and help you find innovations of relevance to you that are in adjacent or
altogether different industrial and technology areas. We convene the game-changers from multiple sectors
all in one place for two days, from 25+ countries, and from over 100 cities worldwide.
</div>
<div style="margin-left: 100px;font-size: 20px;color: #C0C0C0">
<h3 style="color: #4299f1;">Main Topic </h3>
<ul class="b">
<li>Development of Ethereum technologies</li>
<li>Ethereum's challenges and development strategy</li>
<li>New commercial applications based on Ethereum and their development and adoption</li>
<li>Recruitment and finding talent for blockchain companies</li>
</ul>
</div>
</div>
<div style="margin-top: 60px;" class=" col-sm-3 col-md-3 col-lg-3 li">
<ul class="a">
<li><a href="main.html">Main Conference entry</a></li>
<li><a href="sub.html">Sub-forum entry</a></li>
<li><a href="talent.html">Talent database entry</a></li>
<li><a href="investor.html">Investor entry</a></li>
</ul>
<img src="img/12.png"/>
</div>
</div>
</div>
</body>
</html>
|
stylesheets/styles.css | AntoniosHadji/fcc | @import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i');
body {
background-color: #fff;
padding:50px;
font: 14px/1.5 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
color:#727272;
font-weight:400;
}
h1, h2, h3, h4, h5, h6 {
color:#222;
margin:0 0 20px;
}
p, ul, ol, table, pre, dl {
margin:0 0 20px;
}
h1, h2, h3 {
line-height:1.1;
}
h1 {
font-size:28px;
}
h2 {
color:#393939;
}
h3, h4, h5, h6 {
color:#494949;
}
a {
color:#39c;
text-decoration:none;
}
a:hover {
color:#069;
}
a small {
font-size:11px;
color:#777;
margin-top:-0.3em;
display:block;
}
a:hover small {
color:#777;
}
.wrapper {
width:860px;
margin:0 auto;
}
blockquote {
border-left:1px solid #e5e5e5;
margin:0;
padding:0 0 0 20px;
font-style:italic;
}
code, pre {
font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal, Consolas, Liberation Mono, DejaVu Sans Mono, Courier New, monospace;
color:#333;
font-size:12px;
}
pre {
padding:8px 15px;
background: #f8f8f8;
border-radius:5px;
border:1px solid #e5e5e5;
overflow-x: auto;
}
table {
width:100%;
border-collapse:collapse;
}
th, td {
text-align:left;
padding:5px 10px;
border-bottom:1px solid #e5e5e5;
}
dt {
color:#444;
font-weight:700;
}
th {
color:#444;
}
img {
max-width:100%;
}
header {
width:270px;
float:left;
position:fixed;
-webkit-font-smoothing:subpixel-antialiased;
}
header ul {
list-style:none;
height:40px;
padding:0;
background: #f4f4f4;
border-radius:5px;
border:1px solid #e0e0e0;
width:270px;
}
header li {
width:89px;
float:left;
border-right:1px solid #e0e0e0;
height:40px;
}
header li:first-child a {
border-radius:5px 0 0 5px;
}
header li:last-child a {
border-radius:0 5px 5px 0;
}
header ul a {
line-height:1;
font-size:11px;
color:#999;
display:block;
text-align:center;
padding-top:6px;
height:34px;
}
header ul a:hover {
color:#999;
}
header ul a:active {
background-color:#f0f0f0;
}
strong {
color:#222;
font-weight:700;
}
header ul li + li + li {
border-right:none;
width:89px;
}
header ul a strong {
font-size:14px;
display:block;
color:#222;
}
section {
width:500px;
float:right;
padding-bottom:50px;
}
small {
font-size:11px;
}
hr {
border:0;
background:#e5e5e5;
height:1px;
margin:0 0 20px;
}
footer {
width:270px;
float:left;
position:fixed;
bottom:50px;
-webkit-font-smoothing:subpixel-antialiased;
}
@media print, screen and (max-width: 960px) {
div.wrapper {
width:auto;
margin:0;
}
header, section, footer {
float:none;
position:static;
width:auto;
}
header {
padding-right:320px;
}
section {
border:1px solid #e5e5e5;
border-width:1px 0;
padding:20px 0;
margin:0 0 20px;
}
header a small {
display:inline;
}
header ul {
position:absolute;
right:50px;
top:52px;
}
}
@media print, screen and (max-width: 720px) {
body {
word-wrap:break-word;
}
header {
padding:0;
}
header ul, header p.view {
position:static;
}
pre, code {
word-wrap:normal;
}
}
@media print, screen and (max-width: 480px) {
body {
padding:15px;
}
header ul {
width:99%;
}
header li, header ul li + li + li {
width:33%;
}
}
@media print {
body {
padding:0.4in;
font-size:12pt;
color:#444;
}
}
|
doc/api/files/__/_rvm/gems/ruby-2_2_2/gems/activerecord-4_2_2/lib/active_record/relation/predicate_builder/relation_handler_rb.html | benfreeman/yammer_training | <?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>relation_handler.rb</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="../../../../../../../../../../../css/reset.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../../../../../../../../../../css/main.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../../../../../../../../../../css/github.css" type="text/css" media="screen" />
<script src="../../../../../../../../../../../js/jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../js/jquery-effect.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../js/main.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../js/highlight.pack.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div class="banner">
<span>Ruby on Rails 4.2.2</span><br />
<h1>
relation_handler.rb
</h1>
<ul class="files">
<li>
../.rvm/gems/ruby-2.2.2/gems/activerecord-4.2.2/lib/active_record/relation/predicate_builder/relation_handler.rb
</li>
<li>Last modified: 2016-02-03 17:31:52 -0800</li>
</ul>
</div>
<div id="bodyContent">
<div id="content">
<!-- Namespace -->
<div class="sectiontitle">Namespace</div>
<ul>
<li>
<span class="type">MODULE</span>
<a href="../../../../../../../../../../../classes/ActiveRecord.html">ActiveRecord</a>
</li>
</ul>
<!-- Methods -->
</div>
</div>
</body>
</html> |
JMockit_sample/coverage-report/org/apache/http/client/cache/HttpCacheEntrySerializationException.html | hideshis/scripts_for_research | <!DOCTYPE html>
<html>
<head>
<title>HttpCacheEntrySerializationException.java</title>
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8'/>
<link rel='stylesheet' type='text/css' href='../../../../../coverage.css'/>
<link rel='shortcut icon' type='image/png' href='../../../../../logo.png'/>
<script type='text/javascript' src='../../../../../coverage.js'></script>
<script type='text/javascript' src='../../../../../prettify.js'></script>
</head>
<body onload='prettyPrint()'>
<table cellpadding='0' cellspacing='1'>
<caption>httpclient-cache/src/main/java/org/apache/http/client/cache/HttpCacheEntrySerializationException.java</caption>
<tr>
<td class='line'></td><td> </td>
<td class='comment' onclick='showHideLines(this)'><div>/*
* ====================================================================
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*
*/</div><span>/*...*/</span></td>
</tr>
<tr>
<td class='line'>27</td><td> </td>
<td><pre class='prettyprint'>package org.apache.http.client.cache;</pre></td>
</tr>
<tr><td class='line'></td><td colspan='2'> </td></tr>
<tr>
<td class='line'></td><td> </td>
<td><pre class='imports prettyprint' onclick='showHideLines(this)'><div>import java.io.IOException;
</div><span>import ...</span></pre></td>
</tr>
<tr><td class='line'></td><td colspan='2'> </td></tr>
<tr>
<td class='line'></td><td> </td>
<td class='comment' onclick='showHideLines(this)'><div>/**
* Thrown if serialization or deserialization of an {@link HttpCacheEntry}
* fails.
*/</div><span>/*...*/</span></td>
</tr>
<tr>
<td class='line'>35</td><td> </td>
<td><pre class='prettyprint'>public class HttpCacheEntrySerializationException extends IOException {</pre></td>
</tr>
<tr><td class='line'></td><td colspan='2'> </td></tr>
<tr>
<td class='line'>37</td><td> </td>
<td><pre class='prettyprint'> private static final long serialVersionUID = 9219188365878433519L;</pre></td>
</tr>
<tr><td class='line'></td><td colspan='2'> </td></tr>
<tr>
<td class='line'>39</td><td> </td>
<td><pre class='prettyprint'> public HttpCacheEntrySerializationException(final String message) {</pre></td>
</tr>
<tr>
<td class='line'>40</td><td> </td>
<td><pre class='prettyprint'> super();</pre></td>
</tr>
<tr>
<td class='line'>41</td><td> </td>
<td><pre class='prettyprint'> }</pre></td>
</tr>
<tr><td class='line'></td><td colspan='2'> </td></tr>
<tr>
<td class='line'>43</td><td> </td>
<td><pre class='prettyprint'> public HttpCacheEntrySerializationException(final String message, final Throwable cause) {</pre></td>
</tr>
<tr>
<td class='line'>44</td><td> </td>
<td><pre class='prettyprint'> super(message);</pre></td>
</tr>
<tr>
<td class='line'>45</td><td> </td>
<td><pre class='prettyprint'> initCause(cause);</pre></td>
</tr>
<tr>
<td class='line'>46</td><td> </td>
<td><pre class='prettyprint'> }</pre></td>
</tr>
<tr><td class='line'></td><td colspan='2'> </td></tr>
<tr>
<td class='line'>48</td><td> </td>
<td><pre class='prettyprint'>}</pre></td>
</tr>
</table>
</body>
</html>
|
acuscuzeria.html | veciops/front-end-cuscuzeria | <!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="pt-br"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-2.6.2.min.js"></script>
</head>
<body >
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<!-- Add your site or application content here -->
<header class="cus_header_principal">
<div class="limit">
<div class="row">
<div class="span3">
<figure>
<img src="img/Logo_Cuscuzeria_Header.png" alt="Cuscuzeria">
</figure>
</div>
<div class="span9">
<nav>
<ul class="unstyled inline">
<li><a href="home/index">INICIAL</a></li>
<li><a href="home/cuscuzeria">A CUSCUZEIRA</a></li>
<li><a href="home/cardapio">O CARDÁPIO</a></li>
<li><a href="home/eventos">EVENTOS</a></li>
<li><a href="home/novidades">NOVIDADES</a></li>
<li><a href="home/contato">CONTATO</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<section class="cus_conteudo">
<div class="cus_titulo">
<div class="limit">
<center>
<h1>A Cuscuzeria Café</h1>
<div>
<img src="img/icons/estrela-cafe.png">
</div>
</center>
</div>
</div>
<div class="limit">
<div class="row" >
<div class="span5" style="padding-top:64px;">
<p>
Como transformar um prato já tradicional no nordeste em algo diferente e delicioso?</p>
<p>
A Cuscuzeria Café iniciou tendo este grande desafio, oferecer cuscuz recheado de vários sabores e fazer do cuscuz um prato sofisticado e diferente daquele que é consumido na maioria dos lares nordestinos.
</p>
<p>
A Cuscuzeria conseguiu fidelizar não apenas clientes, mas amigos. Os clientes são como visitas que chegam em nossa casa, tratados da melhor forma e servidos com o que tem de mais delicioso em nossa cozinha.
</p>
<p>
Situada na Av Dr. Antônio Gomes de Barros e com um cardápio variado com cuscuz de vários recheios e outras tantas delícias preparadas pela Chef Manuela Magalhães a Cuscuzeria consegue unir a deliciosa comida, com o ótimo ambiente e um perfeito atendimento.</p>
</div>
<div class="span7" style="padding-top:64px">
<img src="img/cus_video.png" alt="vídeo" style="float:right;">
</div>
<div class="span12" style="padding:60px 0 2px;">
<h1 style="border-bottom:1px #fff solid;">O Toque da Chef Manuela</h1>
<div class="row">
<div class="span7" style="margin-top:30px;height:465px;background:url(img/cus_chef_manuela.png) no-repeat center"></div>
<div class="span5" style="margin:97px -30px 0 0;">
<p>
Como transformar um prato já tradicional no nordeste em algo diferente e delicioso?
</p>
<p>
A Cuscuzeria Café iniciou tendo este grande desafio, oferecer cuscuz recheado de vários sabores e fazer do cuscuz um prato sofisticado e diferente daquele que é consumido na maioria dos lares nordestinos.
</p>
<p>
A Cuscuzeria conseguiu fidelizar não apenas clientes, mas amigos. Os clientes são como visitas que chegam em nossa casa, tratados da melhor forma e servidos com o que tem de mais delicioso em nossa cozinha.
</p>
<p>
Situada na Av Dr. Antônio Gomes de Barros e com um cardápio variado com cuscuz de vários recheios e outras tantas delícias preparadas pela Chef Manuela Magalhães a Cuscuzeria consegue unir a deliciosa comida, com o ótimo ambiente e um perfeito atendimento.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<footer style="background:#1f0f01; height:75px;padding-top:35px;margin-top:-2px;color:#904b0f;font-size:12px;">
<div class="limit">
<div class="row">
<div class="span1" style="margin-top:-15px;">
<img src="img/cus_cafe_rodape.png" alt="">
</div>
<div class="span6">
<address style="margin-left: -30px;">Cuscuzeria Café - Av. Amélia Rosa, 1067 - Maceió - Alagoas | 82 3034.8000 | contato@cuscuzeria.com.br</address>
</div>
<div class="span1 offset2">
<img src="img/cus_midias_sociais_rodape.png" style="width:122px">
</div>
<div class="span2" style="float:right;">
made in zeropixel
</div>
</div>
</div>
</footer>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>
|
resources/public/index.html | slavicode/ozwiena | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"></meta>
<title>Oźwiena - your best Twitter wall</title>
<link href='//fonts.googleapis.com/css?family=Lato:300,400&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div id="app" class="wrapper">
<h1>If you see me, something's broken =(</h1>
</div>
<script src="/js/ozwiena.js" type="text/javascript"></script>
</body>
</html>
|
doc/api/classes/ActionController/HttpAuthentication.html | zhuzhang/auc | <?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>ActionController::HttpAuthentication</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="../../css/reset.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../css/main.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../css/github.css" type="text/css" media="screen" />
<script src="../../js/jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="../../js/jquery-effect.js" type="text/javascript" charset="utf-8"></script>
<script src="../../js/main.js" type="text/javascript" charset="utf-8"></script>
<script src="../../js/highlight.pack.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div class="banner">
<span>Ruby on Rails 4.0.0</span><br />
<h1>
<span class="type">Module</span>
ActionController::HttpAuthentication
</h1>
<ul class="files">
<li><a href="../../files/home/jude/_gem/ruby/2_0_0/gems/actionpack-4_0_0/lib/action_controller/metal/http_authentication_rb.html">/home/jude/.gem/ruby/2.0.0/gems/actionpack-4.0.0/lib/action_controller/metal/http_authentication.rb</a></li>
</ul>
</div>
<div id="bodyContent">
<div id="content">
<div class="description">
<p>Makes it dead easy to do HTTP <a
href="HttpAuthentication/Basic.html">Basic</a>, <a
href="HttpAuthentication/Digest.html">Digest</a> and <a
href="HttpAuthentication/Token.html">Token</a> authentication.</p>
</div>
<!-- Namespace -->
<div class="sectiontitle">Namespace</div>
<ul>
<li>
<span class="type">MODULE</span>
<a href="HttpAuthentication/Basic.html">ActionController::HttpAuthentication::Basic</a>
</li>
<li>
<span class="type">MODULE</span>
<a href="HttpAuthentication/Digest.html">ActionController::HttpAuthentication::Digest</a>
</li>
<li>
<span class="type">MODULE</span>
<a href="HttpAuthentication/Token.html">ActionController::HttpAuthentication::Token</a>
</li>
</ul>
<!-- Methods -->
</div>
</div>
</body>
</html> |
src/main/java/es/upm/fi/dia/oeg/map4rdf/client/resource/style.css | speedingdeer/linked-data-visualization-tools | body{
font-family: Verdana, Arial, sans-serif;
font-size: 0.6em;
margin: 0px;
}
@sprite .header{
gwt-image: 'topBackground';
background-repeat: repeat-x;
padding-left: 3em;
}
.footer{
border-top: dotted 1px gray;
padding-top: 0.5em;
text-align: center;
}
.leftMenu{
border: none;
background-color: #f2f2f2;
}
.facets{
padding: 3em 1em 2em 1em;
}
.facet{
border: 1px solid gray;
\-moz-border-radius: 8px;
\-webkit-border-radius: 8px;
background-color: #fff;
margin: 1em;
}
@sprite .facetHeader{
gwt-image: 'facetBackground';
height: 22px;
padding: 0.5em;
text-align: center;
font-weight: bold;
color: #0D0D0D;
border-bottom: 1px solid #f1f1f1;
\-moz-border-radius-topleft: 8px;
\-moz-border-radius-topright: 8px;
\-webkit-border-top-left-radius: 8px;
\-webkit-border-top-right-radius: 8px;
}
.facetSelectionOption{
display: block;
}
.loadingWidgetStyle{
vertical-align: middle;
font-size: 2em;
opacity: 0.75;
text-align: center;
width: 160px;
height: 32px;
}
.loadingWidgetLabelStyle { }
.loadingWidgetIconStyle { }
.toolbar{
padding: 0.5em;
}
.toggleButton{
padding: 5px 5px 5px 5px;
border: 1px solid #cccccc;
cursor: pointer;
\-moz-border-radius-topleft: 8px;
\-moz-border-radius-topright: 8px;
\-webkit-border-top-left-radius: 8px;
\-webkit-border-top-right-radius: 8px;
\-moz-border-radius-bottomleft: 8px;
\-moz-border-radius-bottomright: 8px;
\-webkit-border-bottom-left-radius: 8px;
\-webkit-border-bottom-right-radius: 8px;
}
.toggleButtonPressed{
background-color: #808080;
color: #ffffff;
}
.toggleButtonReleased{white
background-color: transparent;
}
.toggleButtonMouseDown{
background-color: #000000;
color: #ffffff;
}
.timeline{
background: #fff;
opacity: 0.75;
border: 1px solid #cccccc;
\-moz-border-radius-topleft: 8px;
\-moz-border-radius-topright: 8px;
\-webkit-border-top-left-radius: 8px;
\-webkit-border-top-right-radius: 8px;
\-moz-border-radius-bottomleft: 8px;
\-moz-border-radius-bottomright: 8px;
\-webkit-border-bottom-left-radius: 8px;
\-webkit-border-bottom-right-radius: 8px;
}
.summaryLabelStyle{
font-weight: bold;
}
.treeRoot{
font-weight: bold;
font-size: 1.4em;
background: none;
}
.summaryPropertyName {
font-weight: bold;
font-family: Verdana, Arial, sans-serif;
font-size: 0.6em;
}
.summaryPropertyValue{
font-family: Verdana, Arial, sans-serif;
font-size: 0.6em;
}
.popup {
background: white;
border: 1px solid #424242;
padding: 2px;
}
.mainPopup {
background: #f2f2f2;
border: 4px solid #424242;
padding: 6px;
} |
docs/build/html/microbial_ai.regulation.dqn.html | dileep-kishore/microbial-ai |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>microbial_ai.regulation.dqn package — Microbial Intelligence 0.1.0 documentation</title>
<link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '0.1.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt'
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="next" title="microbial_ai.simulation package" href="microbial_ai.simulation.html" />
<link rel="prev" title="microbial_ai.regulation.actor_critic package" href="microbial_ai.regulation.actor_critic.html" />
<link rel="stylesheet" href="_static/custom.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" />
</head>
<body>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="microbial-ai-regulation-dqn-package">
<h1>microbial_ai.regulation.dqn package<a class="headerlink" href="#microbial-ai-regulation-dqn-package" title="Permalink to this headline">¶</a></h1>
<div class="section" id="submodules">
<h2>Submodules<a class="headerlink" href="#submodules" title="Permalink to this headline">¶</a></h2>
</div>
<div class="section" id="module-microbial_ai.regulation.dqn.dddqn">
<span id="microbial-ai-regulation-dqn-dddqn-module"></span><h2>microbial_ai.regulation.dqn.dddqn module<a class="headerlink" href="#module-microbial_ai.regulation.dqn.dddqn" title="Permalink to this headline">¶</a></h2>
<dl class="class">
<dt id="microbial_ai.regulation.dqn.dddqn.Network">
<em class="property">class </em><code class="descclassname">microbial_ai.regulation.dqn.dddqn.</code><code class="descname">Network</code><span class="sig-paren">(</span><em>state_size</em>, <em>action_size</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/microbial_ai/regulation/dqn/dddqn.html#Network"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#microbial_ai.regulation.dqn.dddqn.Network" title="Permalink to this definition">¶</a></dt>
<dd><p>Bases: <code class="xref py py-class docutils literal"><span class="pre">torch.nn.modules.module.Module</span></code></p>
<p>Double-Dueling Deep Q-network</p>
<p class="rubric">Methods</p>
<dl class="method">
<dt id="microbial_ai.regulation.dqn.dddqn.Network.forward">
<code class="descname">forward</code><span class="sig-paren">(</span><em>x</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/microbial_ai/regulation/dqn/dddqn.html#Network.forward"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#microbial_ai.regulation.dqn.dddqn.Network.forward" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
</div>
<div class="section" id="microbial-ai-regulation-dqn-keras-dqn-module">
<h2>microbial_ai.regulation.dqn.keras_dqn module<a class="headerlink" href="#microbial-ai-regulation-dqn-keras-dqn-module" title="Permalink to this headline">¶</a></h2>
</div>
<div class="section" id="module-microbial_ai.regulation.dqn.pytorch_dqn">
<span id="microbial-ai-regulation-dqn-pytorch-dqn-module"></span><h2>microbial_ai.regulation.dqn.pytorch_dqn module<a class="headerlink" href="#module-microbial_ai.regulation.dqn.pytorch_dqn" title="Permalink to this headline">¶</a></h2>
<dl class="class">
<dt id="microbial_ai.regulation.dqn.pytorch_dqn.Dqn">
<em class="property">class </em><code class="descclassname">microbial_ai.regulation.dqn.pytorch_dqn.</code><code class="descname">Dqn</code><span class="sig-paren">(</span><em>input_size</em>, <em>nb_action</em>, <em>gamma</em>, <em>memory_size</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/microbial_ai/regulation/dqn/pytorch_dqn.html#Dqn"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#microbial_ai.regulation.dqn.pytorch_dqn.Dqn" title="Permalink to this definition">¶</a></dt>
<dd><p>Bases: <code class="xref py py-class docutils literal"><span class="pre">object</span></code></p>
<p class="rubric">Methods</p>
<dl class="method">
<dt id="microbial_ai.regulation.dqn.pytorch_dqn.Dqn.learn">
<code class="descname">learn</code><span class="sig-paren">(</span><em>batch_state</em>, <em>batch_next_state</em>, <em>batch_reward</em>, <em>batch_action</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/microbial_ai/regulation/dqn/pytorch_dqn.html#Dqn.learn"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#microbial_ai.regulation.dqn.pytorch_dqn.Dqn.learn" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="microbial_ai.regulation.dqn.pytorch_dqn.Dqn.score">
<code class="descname">score</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="reference internal" href="_modules/microbial_ai/regulation/dqn/pytorch_dqn.html#Dqn.score"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#microbial_ai.regulation.dqn.pytorch_dqn.Dqn.score" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="microbial_ai.regulation.dqn.pytorch_dqn.Dqn.select_action">
<code class="descname">select_action</code><span class="sig-paren">(</span><em>state</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/microbial_ai/regulation/dqn/pytorch_dqn.html#Dqn.select_action"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#microbial_ai.regulation.dqn.pytorch_dqn.Dqn.select_action" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="microbial_ai.regulation.dqn.pytorch_dqn.Dqn.update">
<code class="descname">update</code><span class="sig-paren">(</span><em>currstate</em>, <em>action</em>, <em>reward</em>, <em>newstate</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/microbial_ai/regulation/dqn/pytorch_dqn.html#Dqn.update"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#microbial_ai.regulation.dqn.pytorch_dqn.Dqn.update" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
<dl class="class">
<dt id="microbial_ai.regulation.dqn.pytorch_dqn.Network">
<em class="property">class </em><code class="descclassname">microbial_ai.regulation.dqn.pytorch_dqn.</code><code class="descname">Network</code><span class="sig-paren">(</span><em>input_size</em>, <em>nb_action</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/microbial_ai/regulation/dqn/pytorch_dqn.html#Network"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#microbial_ai.regulation.dqn.pytorch_dqn.Network" title="Permalink to this definition">¶</a></dt>
<dd><p>Bases: <code class="xref py py-class docutils literal"><span class="pre">torch.nn.modules.module.Module</span></code></p>
<p class="rubric">Methods</p>
<dl class="method">
<dt id="microbial_ai.regulation.dqn.pytorch_dqn.Network.forward">
<code class="descname">forward</code><span class="sig-paren">(</span><em>state</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/microbial_ai/regulation/dqn/pytorch_dqn.html#Network.forward"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#microbial_ai.regulation.dqn.pytorch_dqn.Network.forward" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
<dl class="class">
<dt id="microbial_ai.regulation.dqn.pytorch_dqn.ReplayMemory">
<em class="property">class </em><code class="descclassname">microbial_ai.regulation.dqn.pytorch_dqn.</code><code class="descname">ReplayMemory</code><span class="sig-paren">(</span><em>capacity</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/microbial_ai/regulation/dqn/pytorch_dqn.html#ReplayMemory"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#microbial_ai.regulation.dqn.pytorch_dqn.ReplayMemory" title="Permalink to this definition">¶</a></dt>
<dd><p>Bases: <code class="xref py py-class docutils literal"><span class="pre">object</span></code></p>
<p class="rubric">Methods</p>
<dl class="method">
<dt id="microbial_ai.regulation.dqn.pytorch_dqn.ReplayMemory.push">
<code class="descname">push</code><span class="sig-paren">(</span><em>event</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/microbial_ai/regulation/dqn/pytorch_dqn.html#ReplayMemory.push"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#microbial_ai.regulation.dqn.pytorch_dqn.ReplayMemory.push" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="microbial_ai.regulation.dqn.pytorch_dqn.ReplayMemory.sample">
<code class="descname">sample</code><span class="sig-paren">(</span><em>batch_size</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/microbial_ai/regulation/dqn/pytorch_dqn.html#ReplayMemory.sample"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#microbial_ai.regulation.dqn.pytorch_dqn.ReplayMemory.sample" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
</div>
<div class="section" id="microbial-ai-regulation-dqn-run-dqn-module">
<h2>microbial_ai.regulation.dqn.run_dqn module<a class="headerlink" href="#microbial-ai-regulation-dqn-run-dqn-module" title="Permalink to this headline">¶</a></h2>
</div>
<div class="section" id="module-microbial_ai.regulation.dqn">
<span id="module-contents"></span><h2>Module contents<a class="headerlink" href="#module-microbial_ai.regulation.dqn" title="Permalink to this headline">¶</a></h2>
</div>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<h3><a href="index.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">microbial_ai.regulation.dqn package</a><ul>
<li><a class="reference internal" href="#submodules">Submodules</a></li>
<li><a class="reference internal" href="#module-microbial_ai.regulation.dqn.dddqn">microbial_ai.regulation.dqn.dddqn module</a></li>
<li><a class="reference internal" href="#microbial-ai-regulation-dqn-keras-dqn-module">microbial_ai.regulation.dqn.keras_dqn module</a></li>
<li><a class="reference internal" href="#module-microbial_ai.regulation.dqn.pytorch_dqn">microbial_ai.regulation.dqn.pytorch_dqn module</a></li>
<li><a class="reference internal" href="#microbial-ai-regulation-dqn-run-dqn-module">microbial_ai.regulation.dqn.run_dqn module</a></li>
<li><a class="reference internal" href="#module-microbial_ai.regulation.dqn">Module contents</a></li>
</ul>
</li>
</ul>
<div class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="index.html">Documentation overview</a><ul>
<li><a href="modules.html">microbial_ai</a><ul>
<li><a href="microbial_ai.html">microbial_ai package</a><ul>
<li><a href="microbial_ai.regulation.html">microbial_ai.regulation package</a><ul>
<li>Previous: <a href="microbial_ai.regulation.actor_critic.html" title="previous chapter">microbial_ai.regulation.actor_critic package</a></li>
<li>Next: <a href="microbial_ai.simulation.html" title="next chapter">microbial_ai.simulation package</a></li>
</ul></li>
</ul></li>
</ul></li>
</ul></li>
</ul>
</div>
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="_sources/microbial_ai.regulation.dqn.rst.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<div><input type="text" name="q" /></div>
<div><input type="submit" value="Go" /></div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer">
©2017, Dileep Kishore.
|
Powered by <a href="http://sphinx-doc.org/">Sphinx 1.6.5</a>
& <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.10</a>
|
<a href="_sources/microbial_ai.regulation.dqn.rst.txt"
rel="nofollow">Page source</a>
</div>
</body>
</html> |
modules/boonex/files/template/css/main.css | unaio/una | .bx-files-text-unit-gallery .bx-base-text-unit-no-thumb {
position:relative;
}
.bx-files-text-unit-gallery .bx-base-text-unit-no-thumb .sys-icon {
left:0;
top:0;
width:100%;
position:absolute;
font-size:10rem;
line-height:12.25rem;
text-align:center;
overflow:hidden;
}
.bx-files-text-unit-gallery .bx-files-filename,
.bx-files-text-unit-simple-row .bx-files-filename{
overflow: hidden;
text-overflow: ellipsis;
line-height: 2rem;
margin: 0px;
font-weight: bold;
white-space: nowrap;
}
.bx-files-text-unit-gallery .bx-base-general-unit-meta ul.bx-menu-custom.bx-menu-custom-hor {
align-items: center;
-webkit-align-items: center;
justify-content: center;
-webkit-justify-content: center;
}
.bx-files-text-unit-gallery .bx-files-inline-menu ul.bx-menu-object-bx_files_view_inline li.bx-menu-item span.bx-base-general-entity-action {
margin: 0px;
vertical-align: top;
}
.bx-files-inline-menu ul.bx-menu-object-bx_files_view_inline li.bx-menu-item {
white-space: nowrap;
}
.bx-files-text-unit-gallery .bx-menu-custom.bx-menu-custom-hor.bx-menu-more-auto {
justify-content: center;
}
.bx-files-text-unit-gallery {
overflow: visible!important;
}
.bx-files-text-unit-gallery .bx-base-text-unit-thumb,
.bx-files-text-unit-gallery .bx-base-text-unit-no-thumb,
.bx-files-text-unit-gallery .bx-base-text-unit-text {
overflow: hidden;
}
.bx-media-phone .bx-files-text-unit-gallery,
.bx-media-desktop .bx-layout-column-thin .bx-files-text-unit-gallery {
max-width: 100%;
}
.bx-media-tablet2 .bx-files-text-unit-gallery,
.bx-media-desktop .bx-layout-column-half .bx-files-text-unit-gallery {
max-width: 49.8%;
}
.bx-media-desktop .bx-files-text-unit-gallery {
max-width: 33.25%;
}
.bx-files-text-unit .bx-base-text-unit-text {
position:relative;
}
.bx-files-text-unit .bx-base-text-unit-text .sys-icon {
position: absolute;
line-height: normal;
font-size: 3.2rem;
}
.bx-files-text-unit .bx-base-text-unit-text h2,
.bx-files-text-unit .bx-base-text-unit-text > div {
margin-left:3.5rem;
}
/*--- View page ---*/
.bx-files-entity-preview {
overflow: hidden;
}
.bx-files-entity-preview .bx-msg-box-container {
margin: 0;
padding: 0;
}
/*--- Files Browser Table layout ---*/
.bx-files-text-unit-simple-row {
text-align: left;
display: flex;
justify-content: space-between;
align-items: center;
}
.bx-files-text-unit-simple-row .bx-files-fileinfo {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: flex;
align-items: center;
-webkit-align-items: center;
}
.bx-files-text-unit-simple-row .bx-files-fileinfo-text {
display: inline-block;
overflow: hidden;
}
.bx-files-text-unit-simple-row .bx-files-inline-menu ul.bx-menu-object-bx_files_view_inline {
float: right;
}
.bx-files-text-unit-simple-row .bx-files-inline-menu ul.bx-menu-object-bx_files_view_inline li.bx-menu-item span.bx-base-general-entity-action {
margin: 0px;
vertical-align: top;
}
.bx-files-text-unit-simple-row .bx-files-fileinfo i {
font-size: 2.3rem;
line-height: 2.3rem;
}
.bx-files-text-unit-simple-row .bx-base-general-unit-meta ul {
margin: 0px!important;
margin-top: 0.2rem;
}
.bx-files-text-unit-simple-row .bx-files-filename {
line-height: unset;
}
/*--- Toolbar ---*/
.bx-files-browser-toolbar {
width: 100%;
box-sizing: border-box;
text-align: left;
padding-top: 0px;
}
.bx-files-browser-toolbar .bx-form-element-wrapper {
display: inline-block;
margin: 0px;
}
.bx-files-browser-toolbar .bx-btn {
float: none;
display: inline-block;
vertical-align: top;
}
.bx-files-toolbar-controls-group {
display: inline-block;
margin-right: 10px;
white-space: nowrap;
margin-bottom: 1rem;
vertical-align: middle;
}
.bx-files-toolbar-spacer {
width: 100%;
margin-bottom: 0.5rem;
}
.bx-files-folder-path i:last-child {
display: none;
}
.bx-files-bulk-actions {
display: none;
} |
client/app/league/players/players.component.html | TuvokVersatileKolinahr/elobeggers | <app-loading [condition]="isLoading"></app-loading>
<app-toast [message]="toast.message"></app-toast>
<div class="card" *ngIf="!isLoading">
<h4 class="card-header">Current players ({{players.length}})
</h4>
<div class="card-block">
<input type="checkbox" [checked]="onlyActive" (change)="toggleOnlyActive()" data-toggle="toggle" /> active
<table class="table table-bordered table-striped">
<thead class="thead-default">
<tr>
<th>Player</th>
<th>Actions</th>
</tr>
</thead>
<tbody *ngIf="players.length === 0">
<tr>
<td colspan="4">There are no players in the DB. Add a new player below.</td>
</tr>
</tbody>
<tbody *ngIf="!isEditing">
<tr *ngFor="let player of players">
<td>
<app-player-show [player]="player"></app-player-show>
</td>
<td>
<div class="card-block">
<button class="btn btn-sm btn-warning" (click)="enableEditing(player)"><i class="fa fa-pencil"></i></button>
<button class="btn btn-sm btn-danger" (click)="deletePlayer(player)"><i class="fa fa-trash"></i></button>
</div>
</td>
</tr>
</tbody>
<tbody *ngIf="isEditing">
<tr>
<td colspan="4">
<form class="form-inline" #form="ngForm" (ngSubmit)="editPlayer(player)" style="display:inline">
<div class="form-group">
<input class="form-control" type="text" name="name" [(ngModel)]="player.name" placeholder="Name" required>
</div>
<div class="form-group">
<input class="form-control" type="text" name="elo" [(ngModel)]="player.elo" placeholder="1500" required>
</div>
<button class="btn btn-sm btn-primary" type="submit" [disabled]="!form.form.valid"><i class="fa fa-floppy-o"></i> Save</button>
</form>
<button class="btn btn-sm btn-warning" (click)="cancelEditing()"><i class="fa fa-times"></i> Cancel</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="card" *ngIf="!isEditing">
<h4 class="card-header">Add new player</h4>
<div class="card-block">
<form class="form-inline" [formGroup]="addPlayerForm" (ngSubmit)="addPlayer()" style="text-align:center">
<div class="form-group">
<input class="form-control" type="text" name="name" formControlName="name" placeholder="Enter name">
</div>
<button class="btn btn-primary" type="submit" [disabled]="!addPlayerForm.valid"><i class="fa fa-floppy-o"></i> Add</button>
</form>
</div>
</div> |
bower_components/angular-hue-service/example/index.html | kirmani/chrome-hue | <!DOCTYPE html>
<html ng-app="HueExample" ng-controller="MainController">
<head>
<title>Hue Example</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- font awesome from BootstrapCDN -->
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="bower_components/seiyria-bootstrap-slider/dist/css/bootstrap-slider.css" />
<script type="text/javascript" src="bower_components/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="bower_components/angular/angular.min.js"></script>
<script type="text/javascript" src="node_modules/underscore/underscore-min.js"></script>
<script type="text/javascript" src="bower_components/seiyria-bootstrap-slider/js/bootstrap-slider.js"></script>
<script type="text/javascript" src="bower_components/angular-bootstrap-slider/slider.js"></script>
<script type="text/javascript" src="../dist/hue-service.js"></script>
<script type="text/javascript" src="app/app.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<section class="lights col-xs-12">
<h2><i class="fa fa-lightbulb-o"></i> Lights</h2>
<div class="panel panel-default" ng-repeat="(key, light) in lights" ng-class="{disabled:!light.state.reachable}">
<div class="panel-heading">
<h3 class="panel-title">
<i class="fa fa-lightbulb-o"></i> {{light.name}} ({{key}})
<i class="fa fa-warning pull-right" ng-if="!light.state.reachable"></i>
</h3>
</div>
<div class="panel-body">
<div class="btn-group btn-toggle">
<button class="btn btn-sm" ng-click="setLightStateOn(key, true)" ng-class="{active:light.state.on, 'btn-default':!light.state.on, 'btn-primary':light.state.on}">ON</button>
<button class="btn btn-sm" ng-click="setLightStateOn(key, false)" ng-class="{active:!light.state.on, 'btn-default':light.state.on, 'btn-primary':!light.state.on}">OFF</button>
</div>
</div>
<ul class="list-group">
<li class="list-group-item">
<h4>
Brightness
</h4>
<p>
<slider ng-model="light.state.bri" min="0" max="255" step="1" value="{{light.state.bri}}" ng-change="changeBrightness(key, light.state.bri)"></slider>
</p>
</li>
<li class="list-group-item">
<h4>
Alert
</h4>
<p>
<button class="btn btn-sm btn-default" ng-click="triggerAlert(key, 'none')">none</button>
<button class="btn btn-sm btn-default" ng-click="triggerAlert(key, 'select')">select</button>
<button class="btn btn-sm btn-default" ng-click="triggerAlert(key, 'lselect')">lselect</button>
</p>
</li>
<li class="list-group-item">
<h4>
Effect
</h4>
<p>
<div class="btn-group btn-toggle">
<button class="btn btn-sm" ng-click="setEffect(key, 'none')" ng-class="{'active btn-primary':light.state.effect=='none', 'btn-default':light.state.effect!='none'}">None</button>
<button class="btn btn-sm" ng-click="setEffect(key, 'colorloop')" ng-class="{'active btn-primary':light.state.effect=='colorloop', 'btn-default':light.state.effect!='colorloop'}">Colorloop</button>
</div>
</p>
</li>
</ul>
</div>
</section>
<section class="groups col-xs-12">
<h2><i class="fa fa-folder-open-o"></i> Groups</h2>
<div class="panel panel-default" ng-repeat="(key, group) in groups">
<div class="panel-heading">
<h3 class="panel-title">
<i class="fa fa-folder-open-o"></i> {{group.name}}
<button type="button" class="btn btn-default btn-xs pull-right" ng-click="deleteGroup(key)">
<i class="fa fa-times"></i>
</button>
</h3>
</div>
<div class="panel-body">
<div class="btn-group btn-toggle">
<button class="btn btn-sm" ng-click="setGroupStateOn(key, true)" ng-class="{active:group.action.on, 'btn-default':!group.action.on, 'btn-primary':group.action.on}">ON</button>
<button class="btn btn-sm" ng-click="setGroupStateOn(key, false)" ng-class="{active:!group.action.on, 'btn-default':group.action.on, 'btn-primary':!group.action.on}">OFF</button>
</div>
</div>
<ul class="list-group">
<li class="list-group-item" ng-repeat="(key, light) in group.lights">
<i class="fa fa-lightbulb-o"></i> {{lights[light].name}}
</li>
</ul>
</div>
</section>
</div>
</div>
</body>
</html>
|
clean/Linux-x86_64-4.12.0-2.0.8/released/8.13.1/bignums/8.12.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>bignums: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.13.1 / bignums - 8.12.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
bignums
<small>
8.12.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2021-10-22 16:55:43 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-22 16:55:43 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq 8.13.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.12.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.12.0 Official release 4.12.0
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.1 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "Vincent.Laporte@inria.fr"
homepage: "https://github.com/coq/bignums"
dev-repo: "git+https://github.com/coq/bignums.git"
bug-reports: "https://github.com/coq/bignums/issues"
authors: [
"Laurent Théry"
"Benjamin Grégoire"
"Arnaud Spiwack"
"Evgeny Makarov"
"Pierre Letouzey"
]
license: "LGPL-2.1-only"
build: [
[make "-j%{jobs}%" {ocaml:version >= "4.06"}]
]
install: [
[make "install"]
]
depends: [
"ocaml"
"ocamlfind" {build}
"coq" {>= "8.12" & < "8.13~"}
]
tags: [
"keyword:integer numbers"
"keyword:rational numbers"
"keyword:arithmetic"
"keyword:arbitrary-precision"
"category:Miscellaneous/Coq Extensions"
"category:Mathematics/Arithmetic and Number Theory/Number theory"
"category:Mathematics/Arithmetic and Number Theory/Rational numbers"
"logpath:Bignums"
]
synopsis: "Bignums, the Coq library of arbitrary large numbers"
description:
"Provides BigN, BigZ, BigQ that used to be part of Coq standard library < 8.7."
url {
src: "https://github.com/coq/bignums/archive/V8.12.0.tar.gz"
checksum: "sha512=8bec000c7b2c0e36e3a51c630132dd8e412c208a3ada22a4ae2aba6300f80ab9550b50803af901819c1ada72a0f77f5555a57fd9448d7ba734092d9fbb32d677"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-bignums.8.12.0 coq.8.13.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.13.1).
The following dependencies couldn't be met:
- coq-bignums -> coq < 8.13~ -> ocaml < 4.12
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-bignums.8.12.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
server/static/hatbot-rate-panel.html | hatbot-team/hatbot | <link rel="import" href="bower_components/polymer/polymer.html">
<link rel="import" href="bower_components/paper-slider/paper-slider.html">
<link rel="import" href="bower_components/paper-button/paper-button.html">
<link rel="import" href="bower_components/paper-input/paper-input-decorator.html">
<link rel="import" href="bower_components/paper-input/paper-autogrow-textarea.html">
<link rel="import" href="hatbot-panel.html">
<polymer-element name="hatbot-rate-panel" attributes="explanation">
<template>
<style>
#verdict {
width: 200px;
padding: 10px;
text-align: center;
border-left: solid 1px lightgray;
}
#verdict > p {
height: 30px;
width: 100%;
}
#text {
padding: 10px;
}
</style>
<hatbot-panel>
<div horizontal layout>
<div id="text" flex>
<p>{{explanation.text}}</p>
<paper-button raised
hidden?="{{changeText}}"
on-tap="{{activateChangeText}}">
исправить объяснение
</paper-button>
<div hidden?="{{!changeText}}" flex>
<paper-input-decorator flex
label="Исправленный текст объяснения"
floatingLabel="true"
id="a1">
<paper-autogrow-textarea>
<textarea>{{explanation.changed}}</textarea>
</paper-autogrow-textarea>
</paper-input-decorator>
</div>
</div>
<div id="verdict">
<p>{{verdictConvertArray[2 + explanation.verdictNumber].text}}</p>
<paper-slider pin snaps min="-2" max="2" step="1" value={{explanation.verdictNumber}}></paper-slider>
</div>
</div>
</hatbot-panel>
</template>
<script>
Polymer({
explanation: {
changed: '',
text: '',
verdict: 0
},
changeText: false,
verdictConvertArray: [{verdict: "NOT_AN_EXPL", text: "Ужасно! Это вообще не объяснение!"},
{verdict: "VIOLATION", text: "Плохо. Объяснение нарушает правила шляпы."},
{verdict: "NOT_IMPRESSED", text: "Так себе, но вполне корректно."},
{verdict: "GOOD", text: "Хорошо. Но можно лучше."},
{verdict: "EXACT", text: "Отлично! Я сразу понял!"}],
activateChangeText: function() {
this.changeText = true;
console.log("activated change text");
}
});
</script>
</polymer-element> |
siguiente.html | ShirleyS8/dulces_y_pasteles | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Recetario - Dulces Y Pasteles</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/business-casual.css" rel="stylesheet">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Josefin+Slab:100,300,400,600,700,100italic,300italic,400italic,600italic,700italic" rel="stylesheet" type="text/css">
<link rel="shortcut icon" type="image/x-icon" href="file:///C:/Users/Usuario/Documents/Nueva%20carpeta/startbootstrap-business-casual-gh-pages/img/23a746bfb05b812610b30cdc78d4a56b.png">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="brand">Dulces Y Pasteles</div>
<div class="address-bar">Recetas Y Más...</div>
<!-- Navigation -->
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- navbar-brand is hidden on larger screens, but visible when the menu is collapsed -->
<a class="navbar-brand" href="index.html">Dulces Y Pasteles</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li>
<a href="index.html">Inicio</a>
</li>
<li>
<a href="galeria.html">Galería</a>
</li>
<li>
<a href="recetario.html">Recetario</a>
</li>
<li>
<a href="video.html">Video</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<div class="container">
<div class="row">
<div class="box">
<div class="col-lg-12">
<hr>
<h2 class="intro-text text-center">Recetas
</h2>
<hr>
</div>
<div class="col-md-6 col-lg-6 text-center">
<img class="img-responsive img-border img-full" src="img/galletas-avena.jpg" alt="">
<h2>Galletas de Avena
<br>
</h2>
<p>Todos amamos las galletas. Pero para aquellos con miedo a esas calorías de más, tenemos nuestras galletas de Avena, la manera más sabrosa y saludable de comer algo dulce.
Te encantaran</p>
<a href="avena.html" class="btn btn-default btn-lg">Ver más</a>
<hr>
</div>
<div class="col-md-6 col-lg-6 text-center">
<img class="img-responsive img-border img-full" src="img/carrot-cake.jpg" alt="">
<h2>Torta de Zanahoria
<br>
</h2>
<p>El pastel de zanahoria, tarta de zanahoria o torta de zanahoria es un pastel dulce con zanahoria machacada mezclada en la masa.
La zanahoria se ablanda en el proceso de cocción, y la tarta suele tener una textura densa y suave.</p>
<a href="zanahoria.html" class="btn btn-default btn-lg">Ver más</a>
<hr>
</div>
<div class="col-md-6 col-lg-6 text-center">
<img class="img-responsive img-border img-full" src="img/galletas-de-mantequilla.jpg" alt="">
<h2>Galletas de Mantequilla
<br>
</h2>
<p>Las galletas danesas, conocidas también como Brysslkex o sablès. Estas clásicas galletas
son acompañantes de toda mesa americana. Ideales para la merienda de todos en casa. </p>
<a href="mantequilla.html" class="btn btn-default btn-lg">Ver más</a>
<hr>
</div>
<div class="col-md-6 col-lg-6 text-center">
<img class="img-responsive img-border img-full" src="img/trufas.jpg" alt="">
<h2>Trufas de Nutella
<br>
</h2>
<p>La trufa es un dulce con aspecto y sabor similar al bombón pero elaborado con una mezcla de chocolate negro fundido, mantequilla,
azúcar glas, yema de huevo y crema de leche. Estas maravillosas y pequeñas delicias seran las mejores aliadas para la merienda de tus hijos.</p>
<a href="trufasN.html" class="btn btn-default btn-lg">Ver más</a>
<hr>
</div>
<div class="col-md-6 col-lg-6 text-center">
<img class="img-responsive img-border img-full" src="img/creps.jpg" alt="">
<h2>Crepes
<br>
</h2>
<p>Se denomina crepe, crepa, o crep a la receta europea de origen francés bretón, hecha fundamentalmente de harina de trigo,
con la que se elabora una masa en forma de disco, de unos 16 cm de diámetro.</p>
<a href="crepes.html" class="btn btn-default btn-lg">Ver más</a>
<hr>
</div>
<div class="col-md-6 col-lg-6 text-center">
<img class="img-responsive img-border img-full" src="img/coco1.jpg" alt="">
<h2>Arroz con Coco
<br>
</h2>
<p>El arroz con coco o arroz de coco es una preparación a base de arroz blanco hervido en leche de coco.
El arroz con coco se encuentra en muchas culturas a través del ecuador, desde el Sureste Asiático hasta el Caribe. </p>
<a href="coco.html" class="btn btn-default btn-lg">Ver más</a>
<hr>
</div>
<div class="col-md-6 col-lg-6 text-center">
<img class="img-responsive img-border img-full" src="img/tarta-frutos-rojos.jpg" alt="">
<h2>Tarta de Frutos Rojos
<br>
</h2>
<p>Esta receta te dejará con las ganas de más, ya que es tan exquisita que no querras parar de comer una rebanada de esta tarta. </p>
<a href="rojo.html" class="btn btn-default btn-lg">Ver más</a>
<hr>
</div>
<div class="col-md-12 col-lg-12 text-center">
<ul class="pager">
<li class="previous"><a href="recetario.html">← Atras</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- /.container -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<p>Shirley S. y María Nina A.</p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>
|
_site/post/CVE-2006-3076-phpbluedragon-cms-remote-file-inclusion/index.html | DJD888/deftcode.ninja | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>CVE-2006-3076 – PHPBlueDragon CMS 2.9.1 - Remote File Inclusion</title>
<meta name="description" content="">
<meta name="author" content="Federico Fazzi">
<link rel="stylesheet" href="/assets/app-9aa3a0497cf8b7ed5697ebed051cfe57.css">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
<link rel="alternate" type="application/rss+xml" title="" href="/feed.xml">
<link rel="canonical" href="http://deftcode.ninja/post/CVE-2006-3076-phpbluedragon-cms-remote-file-inclusion/">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55598198-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<button id="toggle" class="standard-width" type="button" data-toggle="collapse">
<span class="toggle-line"></span>
<span class="toggle-line"></span>
<span class="toggle-line"></span>
</button>
<div class="wrapper">
<header>
<h1>DEFTCODE<sup>( 2 )</sup></h1>
<ul id="navbar">
<li><a href="http://deftcode.ninja" title="Posts">Posts</a></li>
<li><a href="http://deftcode.ninja/security" title="Security">Security</a></li>
<li><a href="http://deftcode.ninja/about" title="About">About</a></li>
</ul>
<ul id="social" class="apicos-social-sport">
<li><a href="https://github.com/eurialo" title="Github" target="_blank"><span class="apico apico-github-square"></span></a></li>
<li><a href="https://linkedin.com/in/eurialo" title="Linkedin" target="_blank"><span class="apico apico-linkedin-square"></span></a></li>
<li><a href="https://twitter.com/federicofazzi" title="Twitter" target="_blank"><span class="apico apico-twitter-square"></span></a></li>
<li><a href="https://plus.google.com/+FedericoFazzi" title="Google+" target="_blank"><span class="apico apico-google-plus-square"></span></a></li>
<li><a href="/feed.xml" title="Feed RSS" target="_blank"><span class="apico apico-rss-square"></span></a></li>
</ul>
<p>
<small><a href="https://pgp.mit.edu/pks/lookup?search=0x6D378CAF&op=index&exact=on" title="MIT PGP Public Key Server - 0x6D378CAF" target="_blank">GPG - 2048R/6D378CAF</a></small>
</p>
</header>
<section>
<h1 class="post-title">CVE-2006-3076 – PHPBlueDragon CMS 2.9.1 - Remote File Inclusion</h1>
<p class="post-meta">RELEASED IN WEDNESDAY 14, JUNE, 2006</p>
<h3 id="vendor">Vendor</h3>
<p><a href="http://phpbluedragon.net/" title="PHPBlueDragonCMS">http://phpbluedragon.net/</a></p>
<blockquote>
<p>PHP Blue Dragon CMS is a web-based content management system implemented in PHP.</p>
</blockquote>
<h3 id="description">Description</h3>
<p>PHP remote file inclusion vulnerability in <strong>software_upload/public_includes/pub_templates/vphptree/template.php</strong> in <code>PHPBlueDragon CMS 2.9.1</code> allows remote attackers to execute arbitrary PHP code via a URL in the vsDragonRootPath parameter.</p>
<h3 id="proof-of-concept">Proof of Concept</h3>
<p><strong>~</strong> stands for <code>[php-shell-url]</code></p>
<ol>
<li>http://localhost/shop/page.php?osCsid=
<strong>~</strong></li>
</ol>
<h3 id="references">References</h3>
<ul>
<li><a href="http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-3076" title="CVE-2006-3076">http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-3076</a></li>
<li><a href="http://www.securityfocus.com/bid/18440" title="SecurityFocus-18440">http://www.securityfocus.com/bid/18440</a></li>
</ul>
<!-- Go to www.addthis.com/dashboard to customize your tools -->
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-538ce0c960e04da4" async></script>
<!-- Go to www.addthis.com/dashboard to customize your tools -->
<div class="addthis_sharing_toolbox"></div>
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'deftcode'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</section>
<footer>
<p><small>2016 – <b><a href="http://en.wikipedia.org/wiki/MIT_License" title="Wikipedia.org - MIT License" target="_blank">MIT License</a></b></small></p>
</footer>
<script src="/assets/app-cfd2668a2a4934bd07f418c9af7461f6.js"></script>
</div>
</body>
</html>
|
src/MD5BusterBundle/Resources/public/css/login.css | deepmikoto/md5buster | body{
margin:0;
color:#6a6f8c;
background: #b9d8ff;
font:600 16px/18px 'Open Sans',sans-serif;
}
*,:after,:before{box-sizing:border-box}
.clearfix:after,.clearfix:before{content:'';display:table}
.clearfix:after{clear:both;display:block}
a{color:inherit;text-decoration:none}
input {
outline: none;
}
.login-wrap{
width:100%;
margin:10% auto;
max-width:525px;
min-height:450px;
position:relative;
background:url(https://deepmikoto.com/images/photography/66/cliffs.jpg) no-repeat center;
box-shadow:0 12px 15px 0 rgba(0,0,0,.24),0 17px 50px 0 rgba(0,0,0,.19);
}
.login-html{
width:100%;
height:100%;
position:absolute;
padding:90px 70px 50px 70px;
background:rgba(40,57,101,.9);
}
.login-html .sign-in-htm,
.login-html .sign-up-htm{
top:0;
left:0;
right:0;
bottom:0;
position:absolute;
transition:all .4s linear;
}
.login-html .sign-in,
.login-html .sign-up,
.login-form .group .check{
display:none;
}
.login-html .tab,
.login-form .group .label,
.login-form .group .button{
text-transform:uppercase;
}
.login-html .tab{
font-size:22px;
margin-right:15px;
padding-bottom:5px;
margin:0 15px 10px 0;
display:inline-block;
border-bottom:2px solid transparent;
}
.login-html .sign-in:checked + .tab,
.login-html .sign-up:checked + .tab{
color:#fff;
border-color:#1161ee;
}
.login-form{
min-height:345px;
position:relative;
}
.login-form .group{
margin-bottom:15px;
}
.login-form .group .label,
.login-form .group .input,
.login-form .group .button{
width:100%;
color:#fff;
display:block;
}
.login-form .group .input,
.login-form .group .button{
border:none;
padding:15px 20px;
border-radius:25px;
background:rgba(255,255,255,.1);
}
.login-form .group input[data-type="password"]{
text-security:circle;
-webkit-text-security:circle;
}
.login-form .group .label{
color:#aaa;
font-size:12px;
}
.login-form .group .button{
background:#1161ee;
}
.login-form .group .button:active{
-webkit-box-shadow: inset 2px 2px 2px rgba(0, 0, 0, .5);
-moz-box-shadow: inset 2px 2px 2px rgba(0, 0, 0, .5);
box-shadow: inset 2px 2px 2px rgba(0, 0, 0, .5);
}
.login-form .group label .icon{
width:15px;
height:15px;
border-radius:2px;
position:relative;
display:inline-block;
background:rgba(255,255,255,.1);
margin-right: 5px;
}
.login-form .group label .icon:before,
.login-form .group label .icon:after{
content:'';
width:10px;
height:2px;
background:#fff;
position:absolute;
-webkit-transition:all .2s ease-in-out 0s;
transition:all .2s ease-in-out 0s;
}
.login-form .group label .icon:before{
left:3px;
width:5px;
bottom:6px;
-webkit-transform:scale(0) rotate(0);
transform:scale(0) rotate(0);
}
.login-form .group label .icon:after{
top:6px;
right:0;
-webkit-transform:scale(0) rotate(0);
transform:scale(0) rotate(0);
}
.login-form .group .check:checked + label .icon{
background:#1161ee;
} |
box/box-shadow.css | Roming/hello-css3 | article, aside, audio, canvas, datalist, details, figcaption, figure, footer,, header, hgroup, menu, nav, section, video {
display: block;
}
html {
font-size: 62.5%;
}
h1 {
font-size: 40px;
font-size: 4rem;
text-transform: uppercase;
color: rgb(244, 231, 155);
}
h2 {
font-size: 28px;
font-size: 2.8rem;
color: rgb(238, 157, 209);
}
article, h1 {
padding: 0 0 20px 40px;
padding: 0 0 2rem 4rem;
}
div {
background-color: #c39f9f;
width: 100px;
width: 10rem;
height: 80px;
height: 8rem;
text-align: center;
border: 2px solid rgb(244, 231, 155);
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.box1 {
box-shadow: 5px 5px 10px #000;
}
.box2 {
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
.box3 {
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5),
10px 10px 15px rgba(0, 0, 0, 0.5),
-1px -1px 30px rgba(0, 0, 0, 0.2);
}
.box4 {
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5),
inset 5px 5px 8px rgba(0, 0, 0, 0.5);
}
.box5 {
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5),
5px 5px 10px 10px rgba(0, 0, 0, 0.5);
}
|
doc/doxygen/html/functions_rela.html | G-CorpDev/project | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Worksheet - Project Tools ELTE: Class Members - Related Functions</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">Worksheet - Project Tools ELTE
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
 <ul>
<li>Generator
: <a class="el" href="classJWT_1_1SecretHandler.html#a366b7823e659ab78d952a7d79662a4d6">JWT::SecretHandler</a>
</li>
<li>Verifier
: <a class="el" href="classJWT_1_1SecretHandler.html#a871285414448937aa5f297649dc8242a">JWT::SecretHandler</a>
</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.13
</small></address>
</body>
</html>
|
clean/Linux-x86_64-4.01.0-1.2.0/unstable/dev/contrib:coqoban/8.4.dev/2015-01-29_23-45-05.html | coq-bench/coq-bench.github.io-old | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../../..">Unstable</a></li>
<li><a href=".">dev / contrib:coqoban 8.4.dev</a></li>
<li class="active"><a href="">2015-01-29 23:45:05</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="../../../../../about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href=".">« Up</a>
<h1>
contrib:coqoban
<small>
8.4.dev
<span class="label label-info">Not compatible with this Coq</span>
</small>
</h1>
<p><em><script>document.write(moment("2015-01-29 23:45:05 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2015-01-29 23:45:05 UTC)</em><p>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:coqoban/coq:contrib:coqoban.8.4.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Output</dt>
<dd><pre>The package is valid.
</pre></dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --dry-run coq:contrib:coqoban.8.4.dev coq.dev</code></dd>
<dt>Return code</dt>
<dd>768</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is dev).
The following dependencies couldn't be met:
- coq:contrib:coqoban -> coq <= 8.4.dev+ltacprof
Your request can't be satisfied:
- Conflicting version constraints for coq
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --dry-run coq:contrib:coqoban.8.4.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>4 s</dd>
<dt>Output</dt>
<dd><pre>The following actions will be performed:
- remove coq.dev
=== 1 to remove ===
=-=- Removing Packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Removing coq.dev.
[WARNING] Directory /home/bench/.opam/system/lib/coq is not empty, not removing
The following actions will be performed:
- install coq.8.4.dev [required by coq:contrib:coqoban]
- install coq:contrib:coqoban.8.4.dev
=== 2 to install ===
=-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
=-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Building coq.8.4.dev:
./configure -configdir /home/bench/.opam/system/lib/coq/config -mandir /home/bench/.opam/system/man -docdir /home/bench/.opam/system/doc -prefix /home/bench/.opam/system -usecamlp5 -camlp5dir /home/bench/.opam/system/lib/camlp5 -coqide no
make -j4
make install
Installing coq.8.4.dev.
Building coq:contrib:coqoban.8.4.dev:
coq_makefile -f Make -o Makefile
make -j4
make install
Installing coq:contrib:coqoban.8.4.dev.
</pre></dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html> |
doc/tomcat-9.0-doc/api/org/apache/catalina/tribes/package-frame.html | piterlin/piterlin.github.io | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.apache.catalina.tribes (Apache Tomcat 9.0.0.M11 API Documentation)</title><script>var _hmt = _hmt || [];(function() {var hm = document.createElement("script");hm.src = "//hm.baidu.com/hm.js?dd1361ca20a10cc161e72d4bc4fef6df";var s = document.getElementsByTagName("script")[0];s.parentNode.insertBefore(hm, s);})();</script>
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<h1 class="bar"><a href="../../../../org/apache/catalina/tribes/package-summary.html" target="classFrame">org.apache.catalina.tribes</a></h1>
<div class="indexContainer">
<h2 title="Interfaces">Interfaces</h2>
<ul title="Interfaces">
<li><a href="Channel.html" title="interface in org.apache.catalina.tribes" target="classFrame"><span class="interfaceName">Channel</span></a></li>
<li><a href="ChannelInterceptor.html" title="interface in org.apache.catalina.tribes" target="classFrame"><span class="interfaceName">ChannelInterceptor</span></a></li>
<li><a href="ChannelInterceptor.InterceptorEvent.html" title="interface in org.apache.catalina.tribes" target="classFrame"><span class="interfaceName">ChannelInterceptor.InterceptorEvent</span></a></li>
<li><a href="ChannelListener.html" title="interface in org.apache.catalina.tribes" target="classFrame"><span class="interfaceName">ChannelListener</span></a></li>
<li><a href="ChannelMessage.html" title="interface in org.apache.catalina.tribes" target="classFrame"><span class="interfaceName">ChannelMessage</span></a></li>
<li><a href="ChannelReceiver.html" title="interface in org.apache.catalina.tribes" target="classFrame"><span class="interfaceName">ChannelReceiver</span></a></li>
<li><a href="ChannelSender.html" title="interface in org.apache.catalina.tribes" target="classFrame"><span class="interfaceName">ChannelSender</span></a></li>
<li><a href="ErrorHandler.html" title="interface in org.apache.catalina.tribes" target="classFrame"><span class="interfaceName">ErrorHandler</span></a></li>
<li><a href="Heartbeat.html" title="interface in org.apache.catalina.tribes" target="classFrame"><span class="interfaceName">Heartbeat</span></a></li>
<li><a href="ManagedChannel.html" title="interface in org.apache.catalina.tribes" target="classFrame"><span class="interfaceName">ManagedChannel</span></a></li>
<li><a href="Member.html" title="interface in org.apache.catalina.tribes" target="classFrame"><span class="interfaceName">Member</span></a></li>
<li><a href="MembershipListener.html" title="interface in org.apache.catalina.tribes" target="classFrame"><span class="interfaceName">MembershipListener</span></a></li>
<li><a href="MembershipService.html" title="interface in org.apache.catalina.tribes" target="classFrame"><span class="interfaceName">MembershipService</span></a></li>
<li><a href="MessageListener.html" title="interface in org.apache.catalina.tribes" target="classFrame"><span class="interfaceName">MessageListener</span></a></li>
</ul>
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="ByteMessage.html" title="class in org.apache.catalina.tribes" target="classFrame">ByteMessage</a></li>
<li><a href="ChannelException.FaultyMember.html" title="class in org.apache.catalina.tribes" target="classFrame">ChannelException.FaultyMember</a></li>
<li><a href="UniqueId.html" title="class in org.apache.catalina.tribes" target="classFrame">UniqueId</a></li>
</ul>
<h2 title="Exceptions">Exceptions</h2>
<ul title="Exceptions">
<li><a href="ChannelException.html" title="class in org.apache.catalina.tribes" target="classFrame">ChannelException</a></li>
<li><a href="RemoteProcessException.html" title="class in org.apache.catalina.tribes" target="classFrame">RemoteProcessException</a></li>
</ul>
</div>
</body>
</html>
|
JS/Conditional-Statements-Homework/Conditional-Statements-Homework/Task5/index.html | kaizer04/Telerik-Academy-2013-2014 | <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Task5</title>
<script src="scripts.js"></script>
</head>
<body>
<input type="text" id="digit" autofocus="autofocus" placeholder="Enter digit" />
<button onclick="digitName()">To Digit Name --></button>
<span id="result"></span>
</body>
</html>
|
backend/static/js/partials/app-add-group.html | emilkjer/django-memorycms | <p>Group ID: {$ groupId $} <a href="#/apps/{$ appId $}/group/{$ groupId $}">Back to group</a></p>
<p>Group name: {$ text $}</p>
<p ng-if='result'>{$ result.message $}</p>
<form name="addTextForm" class="add-form" ng-submit="submit()">
<input type="text" ng-model="text" name="text" />
<input type="submit" id="submit" value="Submit" />
</form>
|
_includes/collecttags.html | madaan/madaan.github.io | ---
---
Hey I am added!!
{% assign rawtags = "" %}
{% for collection in site.collections %}
{% assign name = collection.label %}
{% for page in site.[name] %}
{% assign ttags = page.tags | join:'|' | append:'|' %}
{% assign rawtags = rawtags | append:ttags %}
{% endfor %}
{% endfor %}
{% for collection in site.collections %}
{% assign name = collection.label %}
{% for page in site.[name] %}
{% for tag in page.tags %}
{{tag}}
{% endfor %}
{% endfor %}
{% endfor %}
{% assign rawtags = rawtags | split:'|' | sort %}
{{ site.tags | jsonify }}
{% assign site.tags = "" %}
{% for tag in rawtags %}
{% if tag != "" %}
{% if tags == "" %}
{% assign tags = tag | split:'|' %}
{% endif %}
{% unless tags contains tag %}
{% assign tags = tags | join:'|' | append:'|' | append:tag | split:'|' %}
{% endunless %}
{% endif %}
{% endfor %}
|
static/css/style.css | jfeinstein10/markedly-better | #inputOpen {
visibility: hidden;
position: absolute;
top: 0;
left: -5000px;
}
#splitter {
position: absolute;
top: 50px;
left: 0;
right: 0;
bottom: 0;
}
.filesystem {
background: #fff;
padding: 16px;
}
.preview {
background: #fff;
overflow: auto;
padding: 20px 30px;
width: 100%;
height: 100%;
}
@media (min-width: 768px) {
.preview {
max-width: 750px;
}
}
@media (min-width: 992px) {
.preview {
max-width: 970px;
}
}
@media (min-width: 1200px) {
.preview {
max-width: 1170px;
}
}
.ui-layout-resizer {
background: #f8f8f8;
border-color: #e7e7e7;
border-style: solid;
border-width: 1px;
width: 10px;
}
.ui-layout-toggler {
background: #ccc;
}
ul.nav li.dropdown:hover > ul.dropdown-menu {
display: block;
}
.dropdown-submenu {
position:relative;
}
.dropdown-submenu>.dropdown-menu {
top:0;
left:100%;
margin-top:-6px;
margin-left:-1px;
-webkit-border-radius:0 6px 6px 6px;
-moz-border-radius:0 6px 6px 6px;
border-radius:0 6px 6px 6px;
max-height: 500px;
overflow-y: auto;
overflow-x: hidden;
}
.dropdown-submenu:hover>.dropdown-menu {
display:block;
}
.dropdown-submenu>a:after {
display:block;
content:" ";
float:right;
width:0;
height:0;
border-color:transparent;
border-style:solid;
border-width:5px 0 5px 5px;
border-left-color:#cccccc;
margin-top:5px;
margin-right:-10px;
}
.dropdown-submenu:hover>a:after {
border-left-color:#ffffff;
}
.dropdown-submenu.pull-left {
float:none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
left:-100%;
margin-left:10px;
-webkit-border-radius:6px 0 6px 6px;
-moz-border-radius:6px 0 6px 6px;
border-radius:6px 0 6px 6px;
}
.modal .modal-header {
border-bottom: none;
position: relative;
padding: 15px;
}
.modal-body {
padding: 15px;
}
.modal .modal-header .btn {
position: absolute;
top: 0;
right: 0;
margin-top: 0;
border-top-left-radius: 0;
border-bottom-right-radius: 0;
}
.modal .modal-footer {
border-top: none;
padding: 0;
}
.modal .modal-footer .btn-group > .btn:first-child {
border-bottom-left-radius: 0;
}
.modal .modal-footer .btn-group > .btn:last-child {
border-top-right-radius: 0;
}
|
index.html | octoblu/vote-octoblu-com | <html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Geek Speak Voting!</title>
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
<!-- Place favicon.ico in the root directory -->
<link href="webfonts/ss-standard.css" rel="stylesheet" />
<link rel="stylesheet" href="./site.css">
<script src="//fb.me/react-0.13.1.min.js"></script>
<script src="//fb.me/JSXTransformer-0.13.1.js"></script>
<script src="//d1g8h12lk9ydf.cloudfront.net/js/latest/meshblu.bundle.js"></script>
<script type="text/jsx" src="./geek-speak-voting.js"></script>
</head>
<body>
<div class="container">
<img
src="//s3-us-west-2.amazonaws.com/octoblu-logos/octoblu-inverse-icon.png"
alt="Octoblu Logo"
class="octoblu-icon" />
<div id="app"></div>
</div>
<script src="webfonts/ss-standard.js"></script>
</body>
</html>
|
public/javascripts/plugins/ol3/apidoc/ol.source.Source.html | joseahr/informaTorrent-Node.JS | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>OpenLayers 3 API Reference - Class: Source</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<script src="scripts/jquery.min.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/bootstrap.min.css">
<link type="text/css" rel="stylesheet" href="styles/jaguar.css">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="/"><img src="logo-70x70.png"> OpenLayers 3</a>
<label id="stability">
<input type="checkbox" id="stability-toggle"> Stable Only
</label>
<ul class="nav navbar-nav pull-right">
<li><a href="../doc">Docs</a></li>
<li><a href="../examples">Examples</a></li>
<li><a href="index.html" class="active">API</a></li>
<li><a href="https://github.com/openlayers/ol3">Code</a></li>
</ul>
</div>
</div>
</div>
<div id="wrap" class="clearfix">
<div class="navigation">
<div class="search">
<input id="search" type="text" class="form-control input-sm" placeholder="Search Documentation">
</div>
<ul class="list">
<li class="item" data-name="ol">
<span class="title">
<a href="ol.html">ol</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.CanvasFunctionType" class="unstable">
<a href="ol.html#.CanvasFunctionType">CanvasFunctionType</a>
</li>
<li data-name="ol.Color" class="unstable">
<a href="ol.html#.Color">Color</a>
</li>
<li data-name="ol.ColorLike" class="unstable">
<a href="ol.html#.ColorLike">ColorLike</a>
</li>
<li data-name="ol.Coordinate" class="">
<a href="ol.html#.Coordinate">Coordinate</a>
</li>
<li data-name="ol.CoordinateFormatType" class="">
<a href="ol.html#.CoordinateFormatType">CoordinateFormatType</a>
</li>
<li data-name="ol.Extent" class="">
<a href="ol.html#.Extent">Extent</a>
</li>
<li data-name="ol.FeatureLoader" class="unstable">
<a href="ol.html#.FeatureLoader">FeatureLoader</a>
</li>
<li data-name="ol.FeatureStyleFunction" class="">
<a href="ol.html#.FeatureStyleFunction">FeatureStyleFunction</a>
</li>
<li data-name="ol.FeatureUrlFunction" class="unstable">
<a href="ol.html#.FeatureUrlFunction">FeatureUrlFunction</a>
</li>
<li data-name="ol.ImageLoadFunctionType" class="unstable">
<a href="ol.html#.ImageLoadFunctionType">ImageLoadFunctionType</a>
</li>
<li data-name="ol.LoadingStrategy" class="unstable">
<a href="ol.html#.LoadingStrategy">LoadingStrategy</a>
</li>
<li data-name="ol.OverlayPositioning" class="">
<a href="ol.html#.OverlayPositioning">OverlayPositioning</a>
</li>
<li data-name="ol.Pixel" class="">
<a href="ol.html#.Pixel">Pixel</a>
</li>
<li data-name="ol.PreRenderFunction" class="unstable">
<a href="ol.html#.PreRenderFunction">PreRenderFunction</a>
</li>
<li data-name="ol.RendererType" class="">
<a href="ol.html#.RendererType">RendererType</a>
</li>
<li data-name="ol.Size" class="">
<a href="ol.html#.Size">Size</a>
</li>
<li data-name="ol.TileCoord" class="unstable">
<a href="ol.html#.TileCoord">TileCoord</a>
</li>
<li data-name="ol.TileLoadFunctionType" class="unstable">
<a href="ol.html#.TileLoadFunctionType">TileLoadFunctionType</a>
</li>
<li data-name="ol.TileUrlFunctionType" class="unstable">
<a href="ol.html#.TileUrlFunctionType">TileUrlFunctionType</a>
</li>
<li data-name="ol.TransformFunction" class="">
<a href="ol.html#.TransformFunction">TransformFunction</a>
</li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.inherits" class="unstable">
<a href="ol.html#.inherits">inherits</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Attribution">
<span class="title">
<a href="ol.Attribution.html">ol.Attribution</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Attribution#getHTML" class="">
<a href="ol.Attribution.html#getHTML">getHTML</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Collection">
<span class="title">
<a href="ol.Collection.html">ol.Collection</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Collection#changed" class="unstable">
<a href="ol.Collection.html#changed">changed</a>
</li>
<li data-name="ol.Collection#clear" class="">
<a href="ol.Collection.html#clear">clear</a>
</li>
<li data-name="ol.Collection#dispatchEvent" class="unstable">
<a href="ol.Collection.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.Collection#extend" class="">
<a href="ol.Collection.html#extend">extend</a>
</li>
<li data-name="ol.Collection#forEach" class="">
<a href="ol.Collection.html#forEach">forEach</a>
</li>
<li data-name="ol.Collection#get" class="">
<a href="ol.Collection.html#get">get</a>
</li>
<li data-name="ol.Collection#getArray" class="">
<a href="ol.Collection.html#getArray">getArray</a>
</li>
<li data-name="ol.Collection#getKeys" class="">
<a href="ol.Collection.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Collection#getLength" class="">
<a href="ol.Collection.html#getLength">getLength</a>
</li>
<li data-name="ol.Collection#getProperties" class="">
<a href="ol.Collection.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Collection#getRevision" class="unstable">
<a href="ol.Collection.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Collection#insertAt" class="">
<a href="ol.Collection.html#insertAt">insertAt</a>
</li>
<li data-name="ol.Collection#item" class="">
<a href="ol.Collection.html#item">item</a>
</li>
<li data-name="ol.Collection#on" class="">
<a href="ol.Collection.html#on">on</a>
</li>
<li data-name="ol.Collection#once" class="">
<a href="ol.Collection.html#once">once</a>
</li>
<li data-name="ol.Collection#pop" class="">
<a href="ol.Collection.html#pop">pop</a>
</li>
<li data-name="ol.Collection#push" class="">
<a href="ol.Collection.html#push">push</a>
</li>
<li data-name="ol.Collection#remove" class="">
<a href="ol.Collection.html#remove">remove</a>
</li>
<li data-name="ol.Collection#removeAt" class="">
<a href="ol.Collection.html#removeAt">removeAt</a>
</li>
<li data-name="ol.Collection#set" class="">
<a href="ol.Collection.html#set">set</a>
</li>
<li data-name="ol.Collection#setAt" class="">
<a href="ol.Collection.html#setAt">setAt</a>
</li>
<li data-name="ol.Collection#setProperties" class="">
<a href="ol.Collection.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Collection#un" class="">
<a href="ol.Collection.html#un">un</a>
</li>
<li data-name="ol.Collection#unByKey" class="">
<a href="ol.Collection.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Collection#unset" class="">
<a href="ol.Collection.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.CollectionEvent#event:add" class="">
<a href="ol.CollectionEvent.html#event:add">add</a>
</li>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:length" class="unstable">
change:length
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.CollectionEvent#event:remove" class="">
<a href="ol.CollectionEvent.html#event:remove">remove</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.CollectionEvent">
<span class="title">
<a href="ol.CollectionEvent.html">ol.CollectionEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.CollectionEvent#element"><a href="ol.CollectionEvent.html#element">element</a></li>
<li data-name="ol.CollectionEvent#target"><a href="ol.CollectionEvent.html#target">target</a></li>
<li data-name="ol.CollectionEvent#type"><a href="ol.CollectionEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.CollectionEvent#preventDefault" class="">
<a href="ol.CollectionEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.CollectionEvent#stopPropagation" class="">
<a href="ol.CollectionEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.DeviceOrientation">
<span class="title">
<a href="ol.DeviceOrientation.html">ol.DeviceOrientation</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.DeviceOrientation#changed" class="unstable">
<a href="ol.DeviceOrientation.html#changed">changed</a>
</li>
<li data-name="ol.DeviceOrientation#dispatchEvent" class="unstable">
<a href="ol.DeviceOrientation.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.DeviceOrientation#get" class="">
<a href="ol.DeviceOrientation.html#get">get</a>
</li>
<li data-name="ol.DeviceOrientation#getAlpha" class="unstable">
<a href="ol.DeviceOrientation.html#getAlpha">getAlpha</a>
</li>
<li data-name="ol.DeviceOrientation#getBeta" class="unstable">
<a href="ol.DeviceOrientation.html#getBeta">getBeta</a>
</li>
<li data-name="ol.DeviceOrientation#getGamma" class="unstable">
<a href="ol.DeviceOrientation.html#getGamma">getGamma</a>
</li>
<li data-name="ol.DeviceOrientation#getHeading" class="unstable">
<a href="ol.DeviceOrientation.html#getHeading">getHeading</a>
</li>
<li data-name="ol.DeviceOrientation#getKeys" class="">
<a href="ol.DeviceOrientation.html#getKeys">getKeys</a>
</li>
<li data-name="ol.DeviceOrientation#getProperties" class="">
<a href="ol.DeviceOrientation.html#getProperties">getProperties</a>
</li>
<li data-name="ol.DeviceOrientation#getRevision" class="unstable">
<a href="ol.DeviceOrientation.html#getRevision">getRevision</a>
</li>
<li data-name="ol.DeviceOrientation#getTracking" class="unstable">
<a href="ol.DeviceOrientation.html#getTracking">getTracking</a>
</li>
<li data-name="ol.DeviceOrientation#on" class="">
<a href="ol.DeviceOrientation.html#on">on</a>
</li>
<li data-name="ol.DeviceOrientation#once" class="">
<a href="ol.DeviceOrientation.html#once">once</a>
</li>
<li data-name="ol.DeviceOrientation#set" class="">
<a href="ol.DeviceOrientation.html#set">set</a>
</li>
<li data-name="ol.DeviceOrientation#setProperties" class="">
<a href="ol.DeviceOrientation.html#setProperties">setProperties</a>
</li>
<li data-name="ol.DeviceOrientation#setTracking" class="unstable">
<a href="ol.DeviceOrientation.html#setTracking">setTracking</a>
</li>
<li data-name="ol.DeviceOrientation#un" class="">
<a href="ol.DeviceOrientation.html#un">un</a>
</li>
<li data-name="ol.DeviceOrientation#unByKey" class="">
<a href="ol.DeviceOrientation.html#unByKey">unByKey</a>
</li>
<li data-name="ol.DeviceOrientation#unset" class="">
<a href="ol.DeviceOrientation.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:alpha" class="unstable">
change:alpha
</li>
<li data-name="ol.ObjectEvent#event:change:beta" class="unstable">
change:beta
</li>
<li data-name="ol.ObjectEvent#event:change:gamma" class="unstable">
change:gamma
</li>
<li data-name="ol.ObjectEvent#event:change:heading" class="unstable">
change:heading
</li>
<li data-name="ol.ObjectEvent#event:change:tracking" class="unstable">
change:tracking
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.Disposable">
<span class="title">
<a href="ol.Disposable.html">ol.Disposable</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.DragBoxEvent">
<span class="title">
<a href="ol.DragBoxEvent.html">ol.DragBoxEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.DragBoxEvent#coordinate"><a href="ol.DragBoxEvent.html#coordinate">coordinate</a></li>
<li data-name="ol.DragBoxEvent#mapBrowserEvent"><a href="ol.DragBoxEvent.html#mapBrowserEvent">mapBrowserEvent</a></li>
<li data-name="ol.DragBoxEvent#target"><a href="ol.DragBoxEvent.html#target">target</a></li>
<li data-name="ol.DragBoxEvent#type"><a href="ol.DragBoxEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.DragBoxEvent#preventDefault" class="">
<a href="ol.DragBoxEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.DragBoxEvent#stopPropagation" class="">
<a href="ol.DragBoxEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Feature">
<span class="title">
<a href="ol.Feature.html">ol.Feature</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Feature#changed" class="unstable">
<a href="ol.Feature.html#changed">changed</a>
</li>
<li data-name="ol.Feature#clone" class="">
<a href="ol.Feature.html#clone">clone</a>
</li>
<li data-name="ol.Feature#dispatchEvent" class="unstable">
<a href="ol.Feature.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.Feature#get" class="">
<a href="ol.Feature.html#get">get</a>
</li>
<li data-name="ol.Feature#getGeometry" class="">
<a href="ol.Feature.html#getGeometry">getGeometry</a>
</li>
<li data-name="ol.Feature#getGeometryName" class="">
<a href="ol.Feature.html#getGeometryName">getGeometryName</a>
</li>
<li data-name="ol.Feature#getId" class="">
<a href="ol.Feature.html#getId">getId</a>
</li>
<li data-name="ol.Feature#getKeys" class="">
<a href="ol.Feature.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Feature#getProperties" class="">
<a href="ol.Feature.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Feature#getRevision" class="unstable">
<a href="ol.Feature.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Feature#getStyle" class="">
<a href="ol.Feature.html#getStyle">getStyle</a>
</li>
<li data-name="ol.Feature#getStyleFunction" class="">
<a href="ol.Feature.html#getStyleFunction">getStyleFunction</a>
</li>
<li data-name="ol.Feature#on" class="">
<a href="ol.Feature.html#on">on</a>
</li>
<li data-name="ol.Feature#once" class="">
<a href="ol.Feature.html#once">once</a>
</li>
<li data-name="ol.Feature#set" class="">
<a href="ol.Feature.html#set">set</a>
</li>
<li data-name="ol.Feature#setGeometry" class="">
<a href="ol.Feature.html#setGeometry">setGeometry</a>
</li>
<li data-name="ol.Feature#setGeometryName" class="">
<a href="ol.Feature.html#setGeometryName">setGeometryName</a>
</li>
<li data-name="ol.Feature#setId" class="">
<a href="ol.Feature.html#setId">setId</a>
</li>
<li data-name="ol.Feature#setProperties" class="">
<a href="ol.Feature.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Feature#setStyle" class="">
<a href="ol.Feature.html#setStyle">setStyle</a>
</li>
<li data-name="ol.Feature#un" class="">
<a href="ol.Feature.html#un">un</a>
</li>
<li data-name="ol.Feature#unByKey" class="">
<a href="ol.Feature.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Feature#unset" class="">
<a href="ol.Feature.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:geometry" class="unstable">
change:geometry
</li>
<li data-name="ol.ObjectEvent#event:change:id" class="unstable">
change:id
</li>
<li data-name="ol.ObjectEvent#event:change:style" class="unstable">
change:style
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.Geolocation">
<span class="title">
<a href="ol.Geolocation.html">ol.Geolocation</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Geolocation#changed" class="unstable">
<a href="ol.Geolocation.html#changed">changed</a>
</li>
<li data-name="ol.Geolocation#dispatchEvent" class="unstable">
<a href="ol.Geolocation.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.Geolocation#get" class="">
<a href="ol.Geolocation.html#get">get</a>
</li>
<li data-name="ol.Geolocation#getAccuracy" class="">
<a href="ol.Geolocation.html#getAccuracy">getAccuracy</a>
</li>
<li data-name="ol.Geolocation#getAccuracyGeometry" class="">
<a href="ol.Geolocation.html#getAccuracyGeometry">getAccuracyGeometry</a>
</li>
<li data-name="ol.Geolocation#getAltitude" class="">
<a href="ol.Geolocation.html#getAltitude">getAltitude</a>
</li>
<li data-name="ol.Geolocation#getAltitudeAccuracy" class="">
<a href="ol.Geolocation.html#getAltitudeAccuracy">getAltitudeAccuracy</a>
</li>
<li data-name="ol.Geolocation#getHeading" class="">
<a href="ol.Geolocation.html#getHeading">getHeading</a>
</li>
<li data-name="ol.Geolocation#getKeys" class="">
<a href="ol.Geolocation.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Geolocation#getPosition" class="">
<a href="ol.Geolocation.html#getPosition">getPosition</a>
</li>
<li data-name="ol.Geolocation#getProjection" class="">
<a href="ol.Geolocation.html#getProjection">getProjection</a>
</li>
<li data-name="ol.Geolocation#getProperties" class="">
<a href="ol.Geolocation.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Geolocation#getRevision" class="unstable">
<a href="ol.Geolocation.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Geolocation#getSpeed" class="">
<a href="ol.Geolocation.html#getSpeed">getSpeed</a>
</li>
<li data-name="ol.Geolocation#getTracking" class="">
<a href="ol.Geolocation.html#getTracking">getTracking</a>
</li>
<li data-name="ol.Geolocation#getTrackingOptions" class="">
<a href="ol.Geolocation.html#getTrackingOptions">getTrackingOptions</a>
</li>
<li data-name="ol.Geolocation#on" class="">
<a href="ol.Geolocation.html#on">on</a>
</li>
<li data-name="ol.Geolocation#once" class="">
<a href="ol.Geolocation.html#once">once</a>
</li>
<li data-name="ol.Geolocation#set" class="">
<a href="ol.Geolocation.html#set">set</a>
</li>
<li data-name="ol.Geolocation#setProjection" class="">
<a href="ol.Geolocation.html#setProjection">setProjection</a>
</li>
<li data-name="ol.Geolocation#setProperties" class="">
<a href="ol.Geolocation.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Geolocation#setTracking" class="">
<a href="ol.Geolocation.html#setTracking">setTracking</a>
</li>
<li data-name="ol.Geolocation#setTrackingOptions" class="">
<a href="ol.Geolocation.html#setTrackingOptions">setTrackingOptions</a>
</li>
<li data-name="ol.Geolocation#un" class="">
<a href="ol.Geolocation.html#un">un</a>
</li>
<li data-name="ol.Geolocation#unByKey" class="">
<a href="ol.Geolocation.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Geolocation#unset" class="">
<a href="ol.Geolocation.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:accuracy" class="unstable">
change:accuracy
</li>
<li data-name="ol.ObjectEvent#event:change:accuracyGeometry" class="unstable">
change:accuracyGeometry
</li>
<li data-name="ol.ObjectEvent#event:change:altitude" class="unstable">
change:altitude
</li>
<li data-name="ol.ObjectEvent#event:change:altitudeAccuracy" class="unstable">
change:altitudeAccuracy
</li>
<li data-name="ol.ObjectEvent#event:change:heading" class="unstable">
change:heading
</li>
<li data-name="ol.ObjectEvent#event:change:position" class="unstable">
change:position
</li>
<li data-name="ol.ObjectEvent#event:change:projection" class="unstable">
change:projection
</li>
<li data-name="ol.ObjectEvent#event:change:speed" class="unstable">
change:speed
</li>
<li data-name="ol.ObjectEvent#event:change:tracking" class="unstable">
change:tracking
</li>
<li data-name="ol.ObjectEvent#event:change:trackingOptions" class="unstable">
change:trackingOptions
</li>
<li data-name="event:error" class="unstable">
<a href="global.html#event:error">error</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.Graticule">
<span class="title">
<a href="ol.Graticule.html">ol.Graticule</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Graticule#getMap" class="unstable">
<a href="ol.Graticule.html#getMap">getMap</a>
</li>
<li data-name="ol.Graticule#getMeridians" class="unstable">
<a href="ol.Graticule.html#getMeridians">getMeridians</a>
</li>
<li data-name="ol.Graticule#getParallels" class="unstable">
<a href="ol.Graticule.html#getParallels">getParallels</a>
</li>
<li data-name="ol.Graticule#setMap" class="unstable">
<a href="ol.Graticule.html#setMap">setMap</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Image">
<span class="title">
<a href="ol.Image.html">ol.Image</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Image#getImage" class="unstable">
<a href="ol.Image.html#getImage">getImage</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.ImageBase">
<span class="title">
<a href="ol.ImageBase.html">ol.ImageBase</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.ImageTile">
<span class="title">
<a href="ol.ImageTile.html">ol.ImageTile</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.ImageTile#getImage" class="unstable">
<a href="ol.ImageTile.html#getImage">getImage</a>
</li>
<li data-name="ol.ImageTile#getTileCoord" class="unstable">
<a href="ol.ImageTile.html#getTileCoord">getTileCoord</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Kinetic">
<span class="title">
<a href="ol.Kinetic.html">ol.Kinetic</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Map">
<span class="title">
<a href="ol.Map.html">ol.Map</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Map#addControl" class="">
<a href="ol.Map.html#addControl">addControl</a>
</li>
<li data-name="ol.Map#addInteraction" class="">
<a href="ol.Map.html#addInteraction">addInteraction</a>
</li>
<li data-name="ol.Map#addLayer" class="">
<a href="ol.Map.html#addLayer">addLayer</a>
</li>
<li data-name="ol.Map#addOverlay" class="">
<a href="ol.Map.html#addOverlay">addOverlay</a>
</li>
<li data-name="ol.Map#beforeRender" class="unstable">
<a href="ol.Map.html#beforeRender">beforeRender</a>
</li>
<li data-name="ol.Map#changed" class="unstable">
<a href="ol.Map.html#changed">changed</a>
</li>
<li data-name="ol.Map#dispatchEvent" class="unstable">
<a href="ol.Map.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.Map#forEachFeatureAtPixel" class="">
<a href="ol.Map.html#forEachFeatureAtPixel">forEachFeatureAtPixel</a>
</li>
<li data-name="ol.Map#forEachLayerAtPixel" class="">
<a href="ol.Map.html#forEachLayerAtPixel">forEachLayerAtPixel</a>
</li>
<li data-name="ol.Map#get" class="">
<a href="ol.Map.html#get">get</a>
</li>
<li data-name="ol.Map#getControls" class="">
<a href="ol.Map.html#getControls">getControls</a>
</li>
<li data-name="ol.Map#getCoordinateFromPixel" class="">
<a href="ol.Map.html#getCoordinateFromPixel">getCoordinateFromPixel</a>
</li>
<li data-name="ol.Map#getEventCoordinate" class="">
<a href="ol.Map.html#getEventCoordinate">getEventCoordinate</a>
</li>
<li data-name="ol.Map#getEventPixel" class="">
<a href="ol.Map.html#getEventPixel">getEventPixel</a>
</li>
<li data-name="ol.Map#getInteractions" class="">
<a href="ol.Map.html#getInteractions">getInteractions</a>
</li>
<li data-name="ol.Map#getKeys" class="">
<a href="ol.Map.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Map#getLayerGroup" class="">
<a href="ol.Map.html#getLayerGroup">getLayerGroup</a>
</li>
<li data-name="ol.Map#getLayers" class="">
<a href="ol.Map.html#getLayers">getLayers</a>
</li>
<li data-name="ol.Map#getOverlayById" class="unstable">
<a href="ol.Map.html#getOverlayById">getOverlayById</a>
</li>
<li data-name="ol.Map#getOverlays" class="">
<a href="ol.Map.html#getOverlays">getOverlays</a>
</li>
<li data-name="ol.Map#getPixelFromCoordinate" class="">
<a href="ol.Map.html#getPixelFromCoordinate">getPixelFromCoordinate</a>
</li>
<li data-name="ol.Map#getProperties" class="">
<a href="ol.Map.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Map#getRevision" class="unstable">
<a href="ol.Map.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Map#getSize" class="">
<a href="ol.Map.html#getSize">getSize</a>
</li>
<li data-name="ol.Map#getTarget" class="">
<a href="ol.Map.html#getTarget">getTarget</a>
</li>
<li data-name="ol.Map#getTargetElement" class="unstable">
<a href="ol.Map.html#getTargetElement">getTargetElement</a>
</li>
<li data-name="ol.Map#getView" class="">
<a href="ol.Map.html#getView">getView</a>
</li>
<li data-name="ol.Map#getViewport" class="">
<a href="ol.Map.html#getViewport">getViewport</a>
</li>
<li data-name="ol.Map#hasFeatureAtPixel" class="unstable">
<a href="ol.Map.html#hasFeatureAtPixel">hasFeatureAtPixel</a>
</li>
<li data-name="ol.Map#on" class="">
<a href="ol.Map.html#on">on</a>
</li>
<li data-name="ol.Map#once" class="">
<a href="ol.Map.html#once">once</a>
</li>
<li data-name="ol.Map#removeControl" class="">
<a href="ol.Map.html#removeControl">removeControl</a>
</li>
<li data-name="ol.Map#removeInteraction" class="">
<a href="ol.Map.html#removeInteraction">removeInteraction</a>
</li>
<li data-name="ol.Map#removeLayer" class="">
<a href="ol.Map.html#removeLayer">removeLayer</a>
</li>
<li data-name="ol.Map#removeOverlay" class="">
<a href="ol.Map.html#removeOverlay">removeOverlay</a>
</li>
<li data-name="ol.Map#render" class="">
<a href="ol.Map.html#render">render</a>
</li>
<li data-name="ol.Map#renderSync" class="">
<a href="ol.Map.html#renderSync">renderSync</a>
</li>
<li data-name="ol.Map#set" class="">
<a href="ol.Map.html#set">set</a>
</li>
<li data-name="ol.Map#setLayerGroup" class="">
<a href="ol.Map.html#setLayerGroup">setLayerGroup</a>
</li>
<li data-name="ol.Map#setProperties" class="">
<a href="ol.Map.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Map#setSize" class="unstable">
<a href="ol.Map.html#setSize">setSize</a>
</li>
<li data-name="ol.Map#setTarget" class="">
<a href="ol.Map.html#setTarget">setTarget</a>
</li>
<li data-name="ol.Map#setView" class="">
<a href="ol.Map.html#setView">setView</a>
</li>
<li data-name="ol.Map#un" class="">
<a href="ol.Map.html#un">un</a>
</li>
<li data-name="ol.Map#unByKey" class="">
<a href="ol.Map.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Map#unset" class="">
<a href="ol.Map.html#unset">unset</a>
</li>
<li data-name="ol.Map#updateSize" class="">
<a href="ol.Map.html#updateSize">updateSize</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:layerGroup" class="unstable">
change:layerGroup
</li>
<li data-name="ol.ObjectEvent#event:change:size" class="unstable">
change:size
</li>
<li data-name="ol.ObjectEvent#event:change:target" class="unstable">
change:target
</li>
<li data-name="ol.ObjectEvent#event:change:view" class="unstable">
change:view
</li>
<li data-name="ol.MapBrowserEvent#event:click" class="">
<a href="ol.MapBrowserEvent.html#event:click">click</a>
</li>
<li data-name="ol.MapBrowserEvent#event:dblclick" class="">
<a href="ol.MapBrowserEvent.html#event:dblclick">dblclick</a>
</li>
<li data-name="ol.MapEvent#event:moveend" class="">
<a href="ol.MapEvent.html#event:moveend">moveend</a>
</li>
<li data-name="ol.MapBrowserEvent#event:pointerdrag" class="unstable">
<a href="ol.MapBrowserEvent.html#event:pointerdrag">pointerdrag</a>
</li>
<li data-name="ol.MapBrowserEvent#event:pointermove" class="">
<a href="ol.MapBrowserEvent.html#event:pointermove">pointermove</a>
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.MapEvent#event:postrender" class="unstable">
<a href="ol.MapEvent.html#event:postrender">postrender</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.MapBrowserEvent#event:singleclick" class="">
<a href="ol.MapBrowserEvent.html#event:singleclick">singleclick</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.MapBrowserEvent">
<span class="title">
<a href="ol.MapBrowserEvent.html">ol.MapBrowserEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.MapBrowserEvent#coordinate"><a href="ol.MapBrowserEvent.html#coordinate">coordinate</a></li>
<li data-name="ol.MapBrowserEvent#dragging"><a href="ol.MapBrowserEvent.html#dragging">dragging</a></li>
<li data-name="ol.MapBrowserEvent#frameState"><a href="ol.MapBrowserEvent.html#frameState">frameState</a></li>
<li data-name="ol.MapBrowserEvent#map"><a href="ol.MapBrowserEvent.html#map">map</a></li>
<li data-name="ol.MapBrowserEvent#originalEvent"><a href="ol.MapBrowserEvent.html#originalEvent">originalEvent</a></li>
<li data-name="ol.MapBrowserEvent#pixel"><a href="ol.MapBrowserEvent.html#pixel">pixel</a></li>
<li data-name="ol.MapBrowserEvent#target"><a href="ol.MapBrowserEvent.html#target">target</a></li>
<li data-name="ol.MapBrowserEvent#type"><a href="ol.MapBrowserEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.MapBrowserEvent#preventDefault" class="">
<a href="ol.MapBrowserEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.MapBrowserEvent#stopPropagation" class="">
<a href="ol.MapBrowserEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.MapEvent">
<span class="title">
<a href="ol.MapEvent.html">ol.MapEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.MapEvent#frameState"><a href="ol.MapEvent.html#frameState">frameState</a></li>
<li data-name="ol.MapEvent#map"><a href="ol.MapEvent.html#map">map</a></li>
<li data-name="ol.MapEvent#target"><a href="ol.MapEvent.html#target">target</a></li>
<li data-name="ol.MapEvent#type"><a href="ol.MapEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.MapEvent#preventDefault" class="">
<a href="ol.MapEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.MapEvent#stopPropagation" class="">
<a href="ol.MapEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Object">
<span class="title">
<a href="ol.Object.html">ol.Object</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Object#changed" class="unstable">
<a href="ol.Object.html#changed">changed</a>
</li>
<li data-name="ol.Object#dispatchEvent" class="unstable">
<a href="ol.Object.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.Object#get" class="">
<a href="ol.Object.html#get">get</a>
</li>
<li data-name="ol.Object#getKeys" class="">
<a href="ol.Object.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Object#getProperties" class="">
<a href="ol.Object.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Object#getRevision" class="unstable">
<a href="ol.Object.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Object#on" class="">
<a href="ol.Object.html#on">on</a>
</li>
<li data-name="ol.Object#once" class="">
<a href="ol.Object.html#once">once</a>
</li>
<li data-name="ol.Object#set" class="">
<a href="ol.Object.html#set">set</a>
</li>
<li data-name="ol.Object#setProperties" class="">
<a href="ol.Object.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Object#un" class="">
<a href="ol.Object.html#un">un</a>
</li>
<li data-name="ol.Object#unByKey" class="">
<a href="ol.Object.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Object#unset" class="">
<a href="ol.Object.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.ObjectEvent">
<span class="title">
<a href="ol.ObjectEvent.html">ol.ObjectEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.ObjectEvent#key"><a href="ol.ObjectEvent.html#key">key</a></li>
<li data-name="ol.ObjectEvent#oldValue"><a href="ol.ObjectEvent.html#oldValue">oldValue</a></li>
<li data-name="ol.ObjectEvent#target"><a href="ol.ObjectEvent.html#target">target</a></li>
<li data-name="ol.ObjectEvent#type"><a href="ol.ObjectEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.ObjectEvent#preventDefault" class="">
<a href="ol.ObjectEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.ObjectEvent#stopPropagation" class="">
<a href="ol.ObjectEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Observable">
<span class="title">
<a href="ol.Observable.html">ol.Observable</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Observable.unByKey" class="">
<a href="ol.Observable.html#.unByKey">unByKey</a>
</li>
<li data-name="ol.Observable#changed" class="unstable">
<a href="ol.Observable.html#changed">changed</a>
</li>
<li data-name="ol.Observable#dispatchEvent" class="unstable">
<a href="ol.Observable.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.Observable#getRevision" class="unstable">
<a href="ol.Observable.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Observable#on" class="">
<a href="ol.Observable.html#on">on</a>
</li>
<li data-name="ol.Observable#once" class="">
<a href="ol.Observable.html#once">once</a>
</li>
<li data-name="ol.Observable#un" class="">
<a href="ol.Observable.html#un">un</a>
</li>
<li data-name="ol.Observable#unByKey" class="">
<a href="ol.Observable.html#unByKey">unByKey</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.Overlay">
<span class="title">
<a href="ol.Overlay.html">ol.Overlay</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Overlay#changed" class="unstable">
<a href="ol.Overlay.html#changed">changed</a>
</li>
<li data-name="ol.Overlay#dispatchEvent" class="unstable">
<a href="ol.Overlay.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.Overlay#get" class="">
<a href="ol.Overlay.html#get">get</a>
</li>
<li data-name="ol.Overlay#getElement" class="">
<a href="ol.Overlay.html#getElement">getElement</a>
</li>
<li data-name="ol.Overlay#getId" class="unstable">
<a href="ol.Overlay.html#getId">getId</a>
</li>
<li data-name="ol.Overlay#getKeys" class="">
<a href="ol.Overlay.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Overlay#getMap" class="">
<a href="ol.Overlay.html#getMap">getMap</a>
</li>
<li data-name="ol.Overlay#getOffset" class="">
<a href="ol.Overlay.html#getOffset">getOffset</a>
</li>
<li data-name="ol.Overlay#getPosition" class="">
<a href="ol.Overlay.html#getPosition">getPosition</a>
</li>
<li data-name="ol.Overlay#getPositioning" class="">
<a href="ol.Overlay.html#getPositioning">getPositioning</a>
</li>
<li data-name="ol.Overlay#getProperties" class="">
<a href="ol.Overlay.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Overlay#getRevision" class="unstable">
<a href="ol.Overlay.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Overlay#on" class="">
<a href="ol.Overlay.html#on">on</a>
</li>
<li data-name="ol.Overlay#once" class="">
<a href="ol.Overlay.html#once">once</a>
</li>
<li data-name="ol.Overlay#set" class="">
<a href="ol.Overlay.html#set">set</a>
</li>
<li data-name="ol.Overlay#setElement" class="">
<a href="ol.Overlay.html#setElement">setElement</a>
</li>
<li data-name="ol.Overlay#setMap" class="">
<a href="ol.Overlay.html#setMap">setMap</a>
</li>
<li data-name="ol.Overlay#setOffset" class="">
<a href="ol.Overlay.html#setOffset">setOffset</a>
</li>
<li data-name="ol.Overlay#setPosition" class="">
<a href="ol.Overlay.html#setPosition">setPosition</a>
</li>
<li data-name="ol.Overlay#setPositioning" class="">
<a href="ol.Overlay.html#setPositioning">setPositioning</a>
</li>
<li data-name="ol.Overlay#setProperties" class="">
<a href="ol.Overlay.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Overlay#un" class="">
<a href="ol.Overlay.html#un">un</a>
</li>
<li data-name="ol.Overlay#unByKey" class="">
<a href="ol.Overlay.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Overlay#unset" class="">
<a href="ol.Overlay.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:element" class="unstable">
change:element
</li>
<li data-name="ol.ObjectEvent#event:change:map" class="unstable">
change:map
</li>
<li data-name="ol.ObjectEvent#event:change:offset" class="unstable">
change:offset
</li>
<li data-name="ol.ObjectEvent#event:change:position" class="unstable">
change:position
</li>
<li data-name="ol.ObjectEvent#event:change:positioning" class="unstable">
change:positioning
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.Sphere">
<span class="title">
<a href="ol.Sphere.html">ol.Sphere</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Sphere#geodesicArea" class="unstable">
<a href="ol.Sphere.html#geodesicArea">geodesicArea</a>
</li>
<li data-name="ol.Sphere#haversineDistance" class="unstable">
<a href="ol.Sphere.html#haversineDistance">haversineDistance</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Tile">
<span class="title">
<a href="ol.Tile.html">ol.Tile</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Tile#getTileCoord" class="unstable">
<a href="ol.Tile.html#getTileCoord">getTileCoord</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.VectorTile">
<span class="title">
<a href="ol.VectorTile.html">ol.VectorTile</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.VectorTile#getFormat" class="unstable">
<a href="ol.VectorTile.html#getFormat">getFormat</a>
</li>
<li data-name="ol.VectorTile#getTileCoord" class="unstable">
<a href="ol.VectorTile.html#getTileCoord">getTileCoord</a>
</li>
<li data-name="ol.VectorTile#setFeatures" class="unstable">
<a href="ol.VectorTile.html#setFeatures">setFeatures</a>
</li>
<li data-name="ol.VectorTile#setLoader" class="unstable">
<a href="ol.VectorTile.html#setLoader">setLoader</a>
</li>
<li data-name="ol.VectorTile#setProjection" class="unstable">
<a href="ol.VectorTile.html#setProjection">setProjection</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.View">
<span class="title">
<a href="ol.View.html">ol.View</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.View#calculateExtent" class="">
<a href="ol.View.html#calculateExtent">calculateExtent</a>
</li>
<li data-name="ol.View#centerOn" class="unstable">
<a href="ol.View.html#centerOn">centerOn</a>
</li>
<li data-name="ol.View#changed" class="unstable">
<a href="ol.View.html#changed">changed</a>
</li>
<li data-name="ol.View#constrainCenter" class="unstable">
<a href="ol.View.html#constrainCenter">constrainCenter</a>
</li>
<li data-name="ol.View#constrainResolution" class="unstable">
<a href="ol.View.html#constrainResolution">constrainResolution</a>
</li>
<li data-name="ol.View#constrainRotation" class="unstable">
<a href="ol.View.html#constrainRotation">constrainRotation</a>
</li>
<li data-name="ol.View#dispatchEvent" class="unstable">
<a href="ol.View.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.View#fit" class="unstable">
<a href="ol.View.html#fit">fit</a>
</li>
<li data-name="ol.View#get" class="">
<a href="ol.View.html#get">get</a>
</li>
<li data-name="ol.View#getCenter" class="">
<a href="ol.View.html#getCenter">getCenter</a>
</li>
<li data-name="ol.View#getKeys" class="">
<a href="ol.View.html#getKeys">getKeys</a>
</li>
<li data-name="ol.View#getProjection" class="">
<a href="ol.View.html#getProjection">getProjection</a>
</li>
<li data-name="ol.View#getProperties" class="">
<a href="ol.View.html#getProperties">getProperties</a>
</li>
<li data-name="ol.View#getResolution" class="">
<a href="ol.View.html#getResolution">getResolution</a>
</li>
<li data-name="ol.View#getRevision" class="unstable">
<a href="ol.View.html#getRevision">getRevision</a>
</li>
<li data-name="ol.View#getRotation" class="">
<a href="ol.View.html#getRotation">getRotation</a>
</li>
<li data-name="ol.View#getZoom" class="">
<a href="ol.View.html#getZoom">getZoom</a>
</li>
<li data-name="ol.View#on" class="">
<a href="ol.View.html#on">on</a>
</li>
<li data-name="ol.View#once" class="">
<a href="ol.View.html#once">once</a>
</li>
<li data-name="ol.View#rotate" class="">
<a href="ol.View.html#rotate">rotate</a>
</li>
<li data-name="ol.View#set" class="">
<a href="ol.View.html#set">set</a>
</li>
<li data-name="ol.View#setCenter" class="">
<a href="ol.View.html#setCenter">setCenter</a>
</li>
<li data-name="ol.View#setProperties" class="">
<a href="ol.View.html#setProperties">setProperties</a>
</li>
<li data-name="ol.View#setResolution" class="">
<a href="ol.View.html#setResolution">setResolution</a>
</li>
<li data-name="ol.View#setRotation" class="">
<a href="ol.View.html#setRotation">setRotation</a>
</li>
<li data-name="ol.View#setZoom" class="">
<a href="ol.View.html#setZoom">setZoom</a>
</li>
<li data-name="ol.View#un" class="">
<a href="ol.View.html#un">un</a>
</li>
<li data-name="ol.View#unByKey" class="">
<a href="ol.View.html#unByKey">unByKey</a>
</li>
<li data-name="ol.View#unset" class="">
<a href="ol.View.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:center" class="unstable">
change:center
</li>
<li data-name="ol.ObjectEvent#event:change:resolution" class="unstable">
change:resolution
</li>
<li data-name="ol.ObjectEvent#event:change:rotation" class="unstable">
change:rotation
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.animation">
<span class="title">
<a href="ol.animation.html">ol.animation</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.animation.bounce" class="unstable">
<a href="ol.animation.html#.bounce">bounce</a>
</li>
<li data-name="ol.animation.pan" class="unstable">
<a href="ol.animation.html#.pan">pan</a>
</li>
<li data-name="ol.animation.rotate" class="unstable">
<a href="ol.animation.html#.rotate">rotate</a>
</li>
<li data-name="ol.animation.zoom" class="unstable">
<a href="ol.animation.html#.zoom">zoom</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.color">
<span class="title">
<a href="ol.color.html">ol.color</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.color.asArray" class="unstable">
<a href="ol.color.html#.asArray">asArray</a>
</li>
<li data-name="ol.color.asString" class="unstable">
<a href="ol.color.html#.asString">asString</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.control">
<span class="title">
<a href="ol.control.html">ol.control</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.control.ScaleLineUnits" class="">
<a href="ol.control.html#.ScaleLineUnits">ScaleLineUnits</a>
</li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.defaults" class="">
<a href="ol.control.html#.defaults">defaults</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.control.Attribution">
<span class="title">
<a href="ol.control.Attribution.html">ol.control.Attribution</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.Attribution.render" class="unstable">
<a href="ol.control.Attribution.html#.render">render</a>
</li>
<li data-name="ol.control.Attribution#changed" class="unstable">
<a href="ol.control.Attribution.html#changed">changed</a>
</li>
<li data-name="ol.control.Attribution#dispatchEvent" class="unstable">
<a href="ol.control.Attribution.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.Attribution#get" class="">
<a href="ol.control.Attribution.html#get">get</a>
</li>
<li data-name="ol.control.Attribution#getCollapsed" class="">
<a href="ol.control.Attribution.html#getCollapsed">getCollapsed</a>
</li>
<li data-name="ol.control.Attribution#getCollapsible" class="">
<a href="ol.control.Attribution.html#getCollapsible">getCollapsible</a>
</li>
<li data-name="ol.control.Attribution#getKeys" class="">
<a href="ol.control.Attribution.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.Attribution#getMap" class="">
<a href="ol.control.Attribution.html#getMap">getMap</a>
</li>
<li data-name="ol.control.Attribution#getProperties" class="">
<a href="ol.control.Attribution.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.Attribution#getRevision" class="unstable">
<a href="ol.control.Attribution.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.Attribution#on" class="">
<a href="ol.control.Attribution.html#on">on</a>
</li>
<li data-name="ol.control.Attribution#once" class="">
<a href="ol.control.Attribution.html#once">once</a>
</li>
<li data-name="ol.control.Attribution#set" class="">
<a href="ol.control.Attribution.html#set">set</a>
</li>
<li data-name="ol.control.Attribution#setCollapsed" class="">
<a href="ol.control.Attribution.html#setCollapsed">setCollapsed</a>
</li>
<li data-name="ol.control.Attribution#setCollapsible" class="">
<a href="ol.control.Attribution.html#setCollapsible">setCollapsible</a>
</li>
<li data-name="ol.control.Attribution#setMap" class="">
<a href="ol.control.Attribution.html#setMap">setMap</a>
</li>
<li data-name="ol.control.Attribution#setProperties" class="">
<a href="ol.control.Attribution.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.Attribution#setTarget" class="unstable">
<a href="ol.control.Attribution.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.Attribution#un" class="">
<a href="ol.control.Attribution.html#un">un</a>
</li>
<li data-name="ol.control.Attribution#unByKey" class="">
<a href="ol.control.Attribution.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.Attribution#unset" class="">
<a href="ol.control.Attribution.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.Control">
<span class="title">
<a href="ol.control.Control.html">ol.control.Control</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.Control#changed" class="unstable">
<a href="ol.control.Control.html#changed">changed</a>
</li>
<li data-name="ol.control.Control#dispatchEvent" class="unstable">
<a href="ol.control.Control.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.Control#get" class="">
<a href="ol.control.Control.html#get">get</a>
</li>
<li data-name="ol.control.Control#getKeys" class="">
<a href="ol.control.Control.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.Control#getMap" class="">
<a href="ol.control.Control.html#getMap">getMap</a>
</li>
<li data-name="ol.control.Control#getProperties" class="">
<a href="ol.control.Control.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.Control#getRevision" class="unstable">
<a href="ol.control.Control.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.Control#on" class="">
<a href="ol.control.Control.html#on">on</a>
</li>
<li data-name="ol.control.Control#once" class="">
<a href="ol.control.Control.html#once">once</a>
</li>
<li data-name="ol.control.Control#set" class="">
<a href="ol.control.Control.html#set">set</a>
</li>
<li data-name="ol.control.Control#setMap" class="">
<a href="ol.control.Control.html#setMap">setMap</a>
</li>
<li data-name="ol.control.Control#setProperties" class="">
<a href="ol.control.Control.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.Control#setTarget" class="unstable">
<a href="ol.control.Control.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.Control#un" class="">
<a href="ol.control.Control.html#un">un</a>
</li>
<li data-name="ol.control.Control#unByKey" class="">
<a href="ol.control.Control.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.Control#unset" class="">
<a href="ol.control.Control.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.FullScreen">
<span class="title">
<a href="ol.control.FullScreen.html">ol.control.FullScreen</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.FullScreen#changed" class="unstable">
<a href="ol.control.FullScreen.html#changed">changed</a>
</li>
<li data-name="ol.control.FullScreen#dispatchEvent" class="unstable">
<a href="ol.control.FullScreen.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.FullScreen#get" class="">
<a href="ol.control.FullScreen.html#get">get</a>
</li>
<li data-name="ol.control.FullScreen#getKeys" class="">
<a href="ol.control.FullScreen.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.FullScreen#getMap" class="">
<a href="ol.control.FullScreen.html#getMap">getMap</a>
</li>
<li data-name="ol.control.FullScreen#getProperties" class="">
<a href="ol.control.FullScreen.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.FullScreen#getRevision" class="unstable">
<a href="ol.control.FullScreen.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.FullScreen#on" class="">
<a href="ol.control.FullScreen.html#on">on</a>
</li>
<li data-name="ol.control.FullScreen#once" class="">
<a href="ol.control.FullScreen.html#once">once</a>
</li>
<li data-name="ol.control.FullScreen#set" class="">
<a href="ol.control.FullScreen.html#set">set</a>
</li>
<li data-name="ol.control.FullScreen#setMap" class="">
<a href="ol.control.FullScreen.html#setMap">setMap</a>
</li>
<li data-name="ol.control.FullScreen#setProperties" class="">
<a href="ol.control.FullScreen.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.FullScreen#setTarget" class="unstable">
<a href="ol.control.FullScreen.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.FullScreen#un" class="">
<a href="ol.control.FullScreen.html#un">un</a>
</li>
<li data-name="ol.control.FullScreen#unByKey" class="">
<a href="ol.control.FullScreen.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.FullScreen#unset" class="">
<a href="ol.control.FullScreen.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.MousePosition">
<span class="title">
<a href="ol.control.MousePosition.html">ol.control.MousePosition</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.MousePosition.render" class="unstable">
<a href="ol.control.MousePosition.html#.render">render</a>
</li>
<li data-name="ol.control.MousePosition#changed" class="unstable">
<a href="ol.control.MousePosition.html#changed">changed</a>
</li>
<li data-name="ol.control.MousePosition#dispatchEvent" class="unstable">
<a href="ol.control.MousePosition.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.MousePosition#get" class="">
<a href="ol.control.MousePosition.html#get">get</a>
</li>
<li data-name="ol.control.MousePosition#getCoordinateFormat" class="">
<a href="ol.control.MousePosition.html#getCoordinateFormat">getCoordinateFormat</a>
</li>
<li data-name="ol.control.MousePosition#getKeys" class="">
<a href="ol.control.MousePosition.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.MousePosition#getMap" class="">
<a href="ol.control.MousePosition.html#getMap">getMap</a>
</li>
<li data-name="ol.control.MousePosition#getProjection" class="">
<a href="ol.control.MousePosition.html#getProjection">getProjection</a>
</li>
<li data-name="ol.control.MousePosition#getProperties" class="">
<a href="ol.control.MousePosition.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.MousePosition#getRevision" class="unstable">
<a href="ol.control.MousePosition.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.MousePosition#on" class="">
<a href="ol.control.MousePosition.html#on">on</a>
</li>
<li data-name="ol.control.MousePosition#once" class="">
<a href="ol.control.MousePosition.html#once">once</a>
</li>
<li data-name="ol.control.MousePosition#set" class="">
<a href="ol.control.MousePosition.html#set">set</a>
</li>
<li data-name="ol.control.MousePosition#setCoordinateFormat" class="">
<a href="ol.control.MousePosition.html#setCoordinateFormat">setCoordinateFormat</a>
</li>
<li data-name="ol.control.MousePosition#setMap" class="">
<a href="ol.control.MousePosition.html#setMap">setMap</a>
</li>
<li data-name="ol.control.MousePosition#setProjection" class="">
<a href="ol.control.MousePosition.html#setProjection">setProjection</a>
</li>
<li data-name="ol.control.MousePosition#setProperties" class="">
<a href="ol.control.MousePosition.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.MousePosition#setTarget" class="unstable">
<a href="ol.control.MousePosition.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.MousePosition#un" class="">
<a href="ol.control.MousePosition.html#un">un</a>
</li>
<li data-name="ol.control.MousePosition#unByKey" class="">
<a href="ol.control.MousePosition.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.MousePosition#unset" class="">
<a href="ol.control.MousePosition.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:coordinateFormat" class="unstable">
change:coordinateFormat
</li>
<li data-name="ol.ObjectEvent#event:change:projection" class="unstable">
change:projection
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.OverviewMap">
<span class="title">
<a href="ol.control.OverviewMap.html">ol.control.OverviewMap</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.OverviewMap.render" class="unstable">
<a href="ol.control.OverviewMap.html#.render">render</a>
</li>
<li data-name="ol.control.OverviewMap#changed" class="unstable">
<a href="ol.control.OverviewMap.html#changed">changed</a>
</li>
<li data-name="ol.control.OverviewMap#dispatchEvent" class="unstable">
<a href="ol.control.OverviewMap.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.OverviewMap#get" class="">
<a href="ol.control.OverviewMap.html#get">get</a>
</li>
<li data-name="ol.control.OverviewMap#getCollapsed" class="">
<a href="ol.control.OverviewMap.html#getCollapsed">getCollapsed</a>
</li>
<li data-name="ol.control.OverviewMap#getCollapsible" class="">
<a href="ol.control.OverviewMap.html#getCollapsible">getCollapsible</a>
</li>
<li data-name="ol.control.OverviewMap#getKeys" class="">
<a href="ol.control.OverviewMap.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.OverviewMap#getMap" class="">
<a href="ol.control.OverviewMap.html#getMap">getMap</a>
</li>
<li data-name="ol.control.OverviewMap#getOverviewMap" class="unstable">
<a href="ol.control.OverviewMap.html#getOverviewMap">getOverviewMap</a>
</li>
<li data-name="ol.control.OverviewMap#getProperties" class="">
<a href="ol.control.OverviewMap.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.OverviewMap#getRevision" class="unstable">
<a href="ol.control.OverviewMap.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.OverviewMap#on" class="">
<a href="ol.control.OverviewMap.html#on">on</a>
</li>
<li data-name="ol.control.OverviewMap#once" class="">
<a href="ol.control.OverviewMap.html#once">once</a>
</li>
<li data-name="ol.control.OverviewMap#set" class="">
<a href="ol.control.OverviewMap.html#set">set</a>
</li>
<li data-name="ol.control.OverviewMap#setCollapsed" class="">
<a href="ol.control.OverviewMap.html#setCollapsed">setCollapsed</a>
</li>
<li data-name="ol.control.OverviewMap#setCollapsible" class="">
<a href="ol.control.OverviewMap.html#setCollapsible">setCollapsible</a>
</li>
<li data-name="ol.control.OverviewMap#setMap" class="">
<a href="ol.control.OverviewMap.html#setMap">setMap</a>
</li>
<li data-name="ol.control.OverviewMap#setProperties" class="">
<a href="ol.control.OverviewMap.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.OverviewMap#setTarget" class="unstable">
<a href="ol.control.OverviewMap.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.OverviewMap#un" class="">
<a href="ol.control.OverviewMap.html#un">un</a>
</li>
<li data-name="ol.control.OverviewMap#unByKey" class="">
<a href="ol.control.OverviewMap.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.OverviewMap#unset" class="">
<a href="ol.control.OverviewMap.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.Rotate">
<span class="title">
<a href="ol.control.Rotate.html">ol.control.Rotate</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.Rotate.render" class="unstable">
<a href="ol.control.Rotate.html#.render">render</a>
</li>
<li data-name="ol.control.Rotate#changed" class="unstable">
<a href="ol.control.Rotate.html#changed">changed</a>
</li>
<li data-name="ol.control.Rotate#dispatchEvent" class="unstable">
<a href="ol.control.Rotate.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.Rotate#get" class="">
<a href="ol.control.Rotate.html#get">get</a>
</li>
<li data-name="ol.control.Rotate#getKeys" class="">
<a href="ol.control.Rotate.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.Rotate#getMap" class="">
<a href="ol.control.Rotate.html#getMap">getMap</a>
</li>
<li data-name="ol.control.Rotate#getProperties" class="">
<a href="ol.control.Rotate.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.Rotate#getRevision" class="unstable">
<a href="ol.control.Rotate.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.Rotate#on" class="">
<a href="ol.control.Rotate.html#on">on</a>
</li>
<li data-name="ol.control.Rotate#once" class="">
<a href="ol.control.Rotate.html#once">once</a>
</li>
<li data-name="ol.control.Rotate#set" class="">
<a href="ol.control.Rotate.html#set">set</a>
</li>
<li data-name="ol.control.Rotate#setMap" class="">
<a href="ol.control.Rotate.html#setMap">setMap</a>
</li>
<li data-name="ol.control.Rotate#setProperties" class="">
<a href="ol.control.Rotate.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.Rotate#setTarget" class="unstable">
<a href="ol.control.Rotate.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.Rotate#un" class="">
<a href="ol.control.Rotate.html#un">un</a>
</li>
<li data-name="ol.control.Rotate#unByKey" class="">
<a href="ol.control.Rotate.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.Rotate#unset" class="">
<a href="ol.control.Rotate.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.ScaleLine">
<span class="title">
<a href="ol.control.ScaleLine.html">ol.control.ScaleLine</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.ScaleLine.render" class="unstable">
<a href="ol.control.ScaleLine.html#.render">render</a>
</li>
<li data-name="ol.control.ScaleLine#changed" class="unstable">
<a href="ol.control.ScaleLine.html#changed">changed</a>
</li>
<li data-name="ol.control.ScaleLine#dispatchEvent" class="unstable">
<a href="ol.control.ScaleLine.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.ScaleLine#get" class="">
<a href="ol.control.ScaleLine.html#get">get</a>
</li>
<li data-name="ol.control.ScaleLine#getKeys" class="">
<a href="ol.control.ScaleLine.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.ScaleLine#getMap" class="">
<a href="ol.control.ScaleLine.html#getMap">getMap</a>
</li>
<li data-name="ol.control.ScaleLine#getProperties" class="">
<a href="ol.control.ScaleLine.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.ScaleLine#getRevision" class="unstable">
<a href="ol.control.ScaleLine.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.ScaleLine#getUnits" class="">
<a href="ol.control.ScaleLine.html#getUnits">getUnits</a>
</li>
<li data-name="ol.control.ScaleLine#on" class="">
<a href="ol.control.ScaleLine.html#on">on</a>
</li>
<li data-name="ol.control.ScaleLine#once" class="">
<a href="ol.control.ScaleLine.html#once">once</a>
</li>
<li data-name="ol.control.ScaleLine#set" class="">
<a href="ol.control.ScaleLine.html#set">set</a>
</li>
<li data-name="ol.control.ScaleLine#setMap" class="">
<a href="ol.control.ScaleLine.html#setMap">setMap</a>
</li>
<li data-name="ol.control.ScaleLine#setProperties" class="">
<a href="ol.control.ScaleLine.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.ScaleLine#setTarget" class="unstable">
<a href="ol.control.ScaleLine.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.ScaleLine#setUnits" class="">
<a href="ol.control.ScaleLine.html#setUnits">setUnits</a>
</li>
<li data-name="ol.control.ScaleLine#un" class="">
<a href="ol.control.ScaleLine.html#un">un</a>
</li>
<li data-name="ol.control.ScaleLine#unByKey" class="">
<a href="ol.control.ScaleLine.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.ScaleLine#unset" class="">
<a href="ol.control.ScaleLine.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:units" class="unstable">
change:units
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.Zoom">
<span class="title">
<a href="ol.control.Zoom.html">ol.control.Zoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.Zoom#changed" class="unstable">
<a href="ol.control.Zoom.html#changed">changed</a>
</li>
<li data-name="ol.control.Zoom#dispatchEvent" class="unstable">
<a href="ol.control.Zoom.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.Zoom#get" class="">
<a href="ol.control.Zoom.html#get">get</a>
</li>
<li data-name="ol.control.Zoom#getKeys" class="">
<a href="ol.control.Zoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.Zoom#getMap" class="">
<a href="ol.control.Zoom.html#getMap">getMap</a>
</li>
<li data-name="ol.control.Zoom#getProperties" class="">
<a href="ol.control.Zoom.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.Zoom#getRevision" class="unstable">
<a href="ol.control.Zoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.Zoom#on" class="">
<a href="ol.control.Zoom.html#on">on</a>
</li>
<li data-name="ol.control.Zoom#once" class="">
<a href="ol.control.Zoom.html#once">once</a>
</li>
<li data-name="ol.control.Zoom#set" class="">
<a href="ol.control.Zoom.html#set">set</a>
</li>
<li data-name="ol.control.Zoom#setMap" class="">
<a href="ol.control.Zoom.html#setMap">setMap</a>
</li>
<li data-name="ol.control.Zoom#setProperties" class="">
<a href="ol.control.Zoom.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.Zoom#setTarget" class="unstable">
<a href="ol.control.Zoom.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.Zoom#un" class="">
<a href="ol.control.Zoom.html#un">un</a>
</li>
<li data-name="ol.control.Zoom#unByKey" class="">
<a href="ol.control.Zoom.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.Zoom#unset" class="">
<a href="ol.control.Zoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.ZoomSlider">
<span class="title">
<a href="ol.control.ZoomSlider.html">ol.control.ZoomSlider</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.ZoomSlider.render" class="unstable">
<a href="ol.control.ZoomSlider.html#.render">render</a>
</li>
<li data-name="ol.control.ZoomSlider#changed" class="unstable">
<a href="ol.control.ZoomSlider.html#changed">changed</a>
</li>
<li data-name="ol.control.ZoomSlider#dispatchEvent" class="unstable">
<a href="ol.control.ZoomSlider.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.ZoomSlider#get" class="">
<a href="ol.control.ZoomSlider.html#get">get</a>
</li>
<li data-name="ol.control.ZoomSlider#getKeys" class="">
<a href="ol.control.ZoomSlider.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.ZoomSlider#getMap" class="">
<a href="ol.control.ZoomSlider.html#getMap">getMap</a>
</li>
<li data-name="ol.control.ZoomSlider#getProperties" class="">
<a href="ol.control.ZoomSlider.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.ZoomSlider#getRevision" class="unstable">
<a href="ol.control.ZoomSlider.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.ZoomSlider#on" class="">
<a href="ol.control.ZoomSlider.html#on">on</a>
</li>
<li data-name="ol.control.ZoomSlider#once" class="">
<a href="ol.control.ZoomSlider.html#once">once</a>
</li>
<li data-name="ol.control.ZoomSlider#set" class="">
<a href="ol.control.ZoomSlider.html#set">set</a>
</li>
<li data-name="ol.control.ZoomSlider#setMap" class="">
<a href="ol.control.ZoomSlider.html#setMap">setMap</a>
</li>
<li data-name="ol.control.ZoomSlider#setProperties" class="">
<a href="ol.control.ZoomSlider.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.ZoomSlider#setTarget" class="unstable">
<a href="ol.control.ZoomSlider.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.ZoomSlider#un" class="">
<a href="ol.control.ZoomSlider.html#un">un</a>
</li>
<li data-name="ol.control.ZoomSlider#unByKey" class="">
<a href="ol.control.ZoomSlider.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.ZoomSlider#unset" class="">
<a href="ol.control.ZoomSlider.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.ZoomToExtent">
<span class="title">
<a href="ol.control.ZoomToExtent.html">ol.control.ZoomToExtent</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.ZoomToExtent#changed" class="unstable">
<a href="ol.control.ZoomToExtent.html#changed">changed</a>
</li>
<li data-name="ol.control.ZoomToExtent#dispatchEvent" class="unstable">
<a href="ol.control.ZoomToExtent.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.ZoomToExtent#get" class="">
<a href="ol.control.ZoomToExtent.html#get">get</a>
</li>
<li data-name="ol.control.ZoomToExtent#getKeys" class="">
<a href="ol.control.ZoomToExtent.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.ZoomToExtent#getMap" class="">
<a href="ol.control.ZoomToExtent.html#getMap">getMap</a>
</li>
<li data-name="ol.control.ZoomToExtent#getProperties" class="">
<a href="ol.control.ZoomToExtent.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.ZoomToExtent#getRevision" class="unstable">
<a href="ol.control.ZoomToExtent.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.ZoomToExtent#on" class="">
<a href="ol.control.ZoomToExtent.html#on">on</a>
</li>
<li data-name="ol.control.ZoomToExtent#once" class="">
<a href="ol.control.ZoomToExtent.html#once">once</a>
</li>
<li data-name="ol.control.ZoomToExtent#set" class="">
<a href="ol.control.ZoomToExtent.html#set">set</a>
</li>
<li data-name="ol.control.ZoomToExtent#setMap" class="">
<a href="ol.control.ZoomToExtent.html#setMap">setMap</a>
</li>
<li data-name="ol.control.ZoomToExtent#setProperties" class="">
<a href="ol.control.ZoomToExtent.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.ZoomToExtent#setTarget" class="unstable">
<a href="ol.control.ZoomToExtent.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.ZoomToExtent#un" class="">
<a href="ol.control.ZoomToExtent.html#un">un</a>
</li>
<li data-name="ol.control.ZoomToExtent#unByKey" class="">
<a href="ol.control.ZoomToExtent.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.ZoomToExtent#unset" class="">
<a href="ol.control.ZoomToExtent.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.coordinate">
<span class="title">
<a href="ol.coordinate.html">ol.coordinate</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.coordinate.add" class="">
<a href="ol.coordinate.html#.add">add</a>
</li>
<li data-name="ol.coordinate.createStringXY" class="">
<a href="ol.coordinate.html#.createStringXY">createStringXY</a>
</li>
<li data-name="ol.coordinate.format" class="">
<a href="ol.coordinate.html#.format">format</a>
</li>
<li data-name="ol.coordinate.rotate" class="">
<a href="ol.coordinate.html#.rotate">rotate</a>
</li>
<li data-name="ol.coordinate.toStringHDMS" class="">
<a href="ol.coordinate.html#.toStringHDMS">toStringHDMS</a>
</li>
<li data-name="ol.coordinate.toStringXY" class="">
<a href="ol.coordinate.html#.toStringXY">toStringXY</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.easing">
<span class="title">
<a href="ol.easing.html">ol.easing</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.easing.easeIn" class="unstable">
<a href="ol.easing.html#.easeIn">easeIn</a>
</li>
<li data-name="ol.easing.easeOut" class="unstable">
<a href="ol.easing.html#.easeOut">easeOut</a>
</li>
<li data-name="ol.easing.inAndOut" class="unstable">
<a href="ol.easing.html#.inAndOut">inAndOut</a>
</li>
<li data-name="ol.easing.linear" class="unstable">
<a href="ol.easing.html#.linear">linear</a>
</li>
<li data-name="ol.easing.upAndDown" class="unstable">
<a href="ol.easing.html#.upAndDown">upAndDown</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.events">
<span class="title">
<a href="ol.events.html">ol.events</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.events.ConditionType" class="">
<a href="ol.events.html#.ConditionType">ConditionType</a>
</li>
<li data-name="ol.events.Key" class="unstable">
<a href="ol.events.html#.Key">Key</a>
</li>
<li data-name="ol.events.ListenerFunctionType" class="unstable">
<a href="ol.events.html#.ListenerFunctionType">ListenerFunctionType</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.events.Event">
<span class="title">
<a href="ol.events.Event.html">ol.events.Event</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.events.Event#target"><a href="ol.events.Event.html#target">target</a></li>
<li data-name="ol.events.Event#type"><a href="ol.events.Event.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.events.Event#preventDefault" class="">
<a href="ol.events.Event.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.events.Event#stopPropagation" class="">
<a href="ol.events.Event.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.events.EventTarget">
<span class="title">
<a href="ol.events.EventTarget.html">ol.events.EventTarget</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.events.condition">
<span class="title">
<a href="ol.events.condition.html">ol.events.condition</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.events.condition.altKeyOnly" class="">
<a href="ol.events.condition.html#.altKeyOnly">altKeyOnly</a>
</li>
<li data-name="ol.events.condition.altShiftKeysOnly" class="">
<a href="ol.events.condition.html#.altShiftKeysOnly">altShiftKeysOnly</a>
</li>
<li data-name="ol.events.condition.always" class="">
<a href="ol.events.condition.html#.always">always</a>
</li>
<li data-name="ol.events.condition.click" class="">
<a href="ol.events.condition.html#.click">click</a>
</li>
<li data-name="ol.events.condition.doubleClick" class="">
<a href="ol.events.condition.html#.doubleClick">doubleClick</a>
</li>
<li data-name="ol.events.condition.mouseOnly" class="">
<a href="ol.events.condition.html#.mouseOnly">mouseOnly</a>
</li>
<li data-name="ol.events.condition.never" class="">
<a href="ol.events.condition.html#.never">never</a>
</li>
<li data-name="ol.events.condition.noModifierKeys" class="">
<a href="ol.events.condition.html#.noModifierKeys">noModifierKeys</a>
</li>
<li data-name="ol.events.condition.platformModifierKeyOnly" class="">
<a href="ol.events.condition.html#.platformModifierKeyOnly">platformModifierKeyOnly</a>
</li>
<li data-name="ol.events.condition.pointerMove" class="unstable">
<a href="ol.events.condition.html#.pointerMove">pointerMove</a>
</li>
<li data-name="ol.events.condition.shiftKeyOnly" class="">
<a href="ol.events.condition.html#.shiftKeyOnly">shiftKeyOnly</a>
</li>
<li data-name="ol.events.condition.singleClick" class="">
<a href="ol.events.condition.html#.singleClick">singleClick</a>
</li>
<li data-name="ol.events.condition.targetNotEditable" class="unstable">
<a href="ol.events.condition.html#.targetNotEditable">targetNotEditable</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.extent">
<span class="title">
<a href="ol.extent.html">ol.extent</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.extent.applyTransform" class="">
<a href="ol.extent.html#.applyTransform">applyTransform</a>
</li>
<li data-name="ol.extent.boundingExtent" class="">
<a href="ol.extent.html#.boundingExtent">boundingExtent</a>
</li>
<li data-name="ol.extent.buffer" class="">
<a href="ol.extent.html#.buffer">buffer</a>
</li>
<li data-name="ol.extent.containsCoordinate" class="">
<a href="ol.extent.html#.containsCoordinate">containsCoordinate</a>
</li>
<li data-name="ol.extent.containsExtent" class="">
<a href="ol.extent.html#.containsExtent">containsExtent</a>
</li>
<li data-name="ol.extent.containsXY" class="">
<a href="ol.extent.html#.containsXY">containsXY</a>
</li>
<li data-name="ol.extent.createEmpty" class="">
<a href="ol.extent.html#.createEmpty">createEmpty</a>
</li>
<li data-name="ol.extent.equals" class="">
<a href="ol.extent.html#.equals">equals</a>
</li>
<li data-name="ol.extent.extend" class="">
<a href="ol.extent.html#.extend">extend</a>
</li>
<li data-name="ol.extent.getBottomLeft" class="">
<a href="ol.extent.html#.getBottomLeft">getBottomLeft</a>
</li>
<li data-name="ol.extent.getBottomRight" class="">
<a href="ol.extent.html#.getBottomRight">getBottomRight</a>
</li>
<li data-name="ol.extent.getCenter" class="">
<a href="ol.extent.html#.getCenter">getCenter</a>
</li>
<li data-name="ol.extent.getHeight" class="">
<a href="ol.extent.html#.getHeight">getHeight</a>
</li>
<li data-name="ol.extent.getIntersection" class="">
<a href="ol.extent.html#.getIntersection">getIntersection</a>
</li>
<li data-name="ol.extent.getSize" class="">
<a href="ol.extent.html#.getSize">getSize</a>
</li>
<li data-name="ol.extent.getTopLeft" class="">
<a href="ol.extent.html#.getTopLeft">getTopLeft</a>
</li>
<li data-name="ol.extent.getTopRight" class="">
<a href="ol.extent.html#.getTopRight">getTopRight</a>
</li>
<li data-name="ol.extent.getWidth" class="">
<a href="ol.extent.html#.getWidth">getWidth</a>
</li>
<li data-name="ol.extent.intersects" class="">
<a href="ol.extent.html#.intersects">intersects</a>
</li>
<li data-name="ol.extent.isEmpty" class="">
<a href="ol.extent.html#.isEmpty">isEmpty</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.featureloader">
<span class="title">
<a href="ol.featureloader.html">ol.featureloader</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.featureloader.tile" class="unstable">
<a href="ol.featureloader.html#.tile">tile</a>
</li>
<li data-name="ol.featureloader.xhr" class="unstable">
<a href="ol.featureloader.html#.xhr">xhr</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format">
<span class="title">
<a href="ol.format.html">ol.format</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.format.IGCZ" class="unstable">
<a href="ol.format.html#.IGCZ">IGCZ</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.EsriJSON">
<span class="title">
<a href="ol.format.EsriJSON.html">ol.format.EsriJSON</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.EsriJSON#readFeature" class="unstable">
<a href="ol.format.EsriJSON.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.EsriJSON#readFeatures" class="unstable">
<a href="ol.format.EsriJSON.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.EsriJSON#readGeometry" class="unstable">
<a href="ol.format.EsriJSON.html#readGeometry">readGeometry</a>
</li>
<li data-name="ol.format.EsriJSON#readProjection" class="unstable">
<a href="ol.format.EsriJSON.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.EsriJSON#writeFeature" class="unstable">
<a href="ol.format.EsriJSON.html#writeFeature">writeFeature</a>
</li>
<li data-name="ol.format.EsriJSON#writeFeatureObject" class="unstable">
<a href="ol.format.EsriJSON.html#writeFeatureObject">writeFeatureObject</a>
</li>
<li data-name="ol.format.EsriJSON#writeFeatures" class="unstable">
<a href="ol.format.EsriJSON.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.EsriJSON#writeFeaturesObject" class="unstable">
<a href="ol.format.EsriJSON.html#writeFeaturesObject">writeFeaturesObject</a>
</li>
<li data-name="ol.format.EsriJSON#writeGeometry" class="unstable">
<a href="ol.format.EsriJSON.html#writeGeometry">writeGeometry</a>
</li>
<li data-name="ol.format.EsriJSON#writeGeometryObject" class="unstable">
<a href="ol.format.EsriJSON.html#writeGeometryObject">writeGeometryObject</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.Feature">
<span class="title">
<a href="ol.format.Feature.html">ol.format.Feature</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.GML">
<span class="title">
<a href="ol.format.GML.html">ol.format.GML</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.GML#readFeatures" class="">
<a href="ol.format.GML.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.GML#writeFeatures" class="">
<a href="ol.format.GML.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.GML#writeFeaturesNode" class="unstable">
<a href="ol.format.GML.html#writeFeaturesNode">writeFeaturesNode</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.GML2">
<span class="title">
<a href="ol.format.GML2.html">ol.format.GML2</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.GML2#readFeatures" class="">
<a href="ol.format.GML2.html#readFeatures">readFeatures</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.GML3">
<span class="title">
<a href="ol.format.GML3.html">ol.format.GML3</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.GML3#readFeatures" class="">
<a href="ol.format.GML3.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.GML3#writeFeatures" class="">
<a href="ol.format.GML3.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.GML3#writeFeaturesNode" class="unstable">
<a href="ol.format.GML3.html#writeFeaturesNode">writeFeaturesNode</a>
</li>
<li data-name="ol.format.GML3#writeGeometryNode" class="unstable">
<a href="ol.format.GML3.html#writeGeometryNode">writeGeometryNode</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.GMLBase">
<span class="title">
<a href="ol.format.GMLBase.html">ol.format.GMLBase</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.GMLBase#readFeatures" class="">
<a href="ol.format.GMLBase.html#readFeatures">readFeatures</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.GPX">
<span class="title">
<a href="ol.format.GPX.html">ol.format.GPX</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.GPX#readFeature" class="">
<a href="ol.format.GPX.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.GPX#readFeatures" class="">
<a href="ol.format.GPX.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.GPX#readProjection" class="">
<a href="ol.format.GPX.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.GPX#writeFeatures" class="">
<a href="ol.format.GPX.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.GPX#writeFeaturesNode" class="unstable">
<a href="ol.format.GPX.html#writeFeaturesNode">writeFeaturesNode</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.GeoJSON">
<span class="title">
<a href="ol.format.GeoJSON.html">ol.format.GeoJSON</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.GeoJSON#readFeature" class="">
<a href="ol.format.GeoJSON.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.GeoJSON#readFeatures" class="">
<a href="ol.format.GeoJSON.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.GeoJSON#readGeometry" class="">
<a href="ol.format.GeoJSON.html#readGeometry">readGeometry</a>
</li>
<li data-name="ol.format.GeoJSON#readProjection" class="">
<a href="ol.format.GeoJSON.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.GeoJSON#writeFeature" class="">
<a href="ol.format.GeoJSON.html#writeFeature">writeFeature</a>
</li>
<li data-name="ol.format.GeoJSON#writeFeatureObject" class="">
<a href="ol.format.GeoJSON.html#writeFeatureObject">writeFeatureObject</a>
</li>
<li data-name="ol.format.GeoJSON#writeFeatures" class="">
<a href="ol.format.GeoJSON.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.GeoJSON#writeFeaturesObject" class="">
<a href="ol.format.GeoJSON.html#writeFeaturesObject">writeFeaturesObject</a>
</li>
<li data-name="ol.format.GeoJSON#writeGeometry" class="">
<a href="ol.format.GeoJSON.html#writeGeometry">writeGeometry</a>
</li>
<li data-name="ol.format.GeoJSON#writeGeometryObject" class="">
<a href="ol.format.GeoJSON.html#writeGeometryObject">writeGeometryObject</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.IGC">
<span class="title">
<a href="ol.format.IGC.html">ol.format.IGC</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.IGC#readFeature" class="unstable">
<a href="ol.format.IGC.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.IGC#readFeatures" class="unstable">
<a href="ol.format.IGC.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.IGC#readProjection" class="unstable">
<a href="ol.format.IGC.html#readProjection">readProjection</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.JSONFeature">
<span class="title">
<a href="ol.format.JSONFeature.html">ol.format.JSONFeature</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.KML">
<span class="title">
<a href="ol.format.KML.html">ol.format.KML</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.KML#readFeature" class="">
<a href="ol.format.KML.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.KML#readFeatures" class="">
<a href="ol.format.KML.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.KML#readName" class="">
<a href="ol.format.KML.html#readName">readName</a>
</li>
<li data-name="ol.format.KML#readNetworkLinks" class="unstable">
<a href="ol.format.KML.html#readNetworkLinks">readNetworkLinks</a>
</li>
<li data-name="ol.format.KML#readProjection" class="">
<a href="ol.format.KML.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.KML#writeFeatures" class="">
<a href="ol.format.KML.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.KML#writeFeaturesNode" class="unstable">
<a href="ol.format.KML.html#writeFeaturesNode">writeFeaturesNode</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.MVT">
<span class="title">
<a href="ol.format.MVT.html">ol.format.MVT</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.MVT#setLayers" class="unstable">
<a href="ol.format.MVT.html#setLayers">setLayers</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.OSMXML">
<span class="title">
<a href="ol.format.OSMXML.html">ol.format.OSMXML</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.OSMXML#readFeatures" class="">
<a href="ol.format.OSMXML.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.OSMXML#readProjection" class="">
<a href="ol.format.OSMXML.html#readProjection">readProjection</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.Polyline">
<span class="title">
<a href="ol.format.Polyline.html">ol.format.Polyline</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.Polyline.decodeDeltas" class="unstable">
<a href="ol.format.Polyline.html#.decodeDeltas">decodeDeltas</a>
</li>
<li data-name="ol.format.Polyline.decodeFloats" class="unstable">
<a href="ol.format.Polyline.html#.decodeFloats">decodeFloats</a>
</li>
<li data-name="ol.format.Polyline.encodeDeltas" class="unstable">
<a href="ol.format.Polyline.html#.encodeDeltas">encodeDeltas</a>
</li>
<li data-name="ol.format.Polyline.encodeFloats" class="unstable">
<a href="ol.format.Polyline.html#.encodeFloats">encodeFloats</a>
</li>
<li data-name="ol.format.Polyline#readFeature" class="">
<a href="ol.format.Polyline.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.Polyline#readFeatures" class="">
<a href="ol.format.Polyline.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.Polyline#readGeometry" class="">
<a href="ol.format.Polyline.html#readGeometry">readGeometry</a>
</li>
<li data-name="ol.format.Polyline#readProjection" class="">
<a href="ol.format.Polyline.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.Polyline#writeGeometry" class="">
<a href="ol.format.Polyline.html#writeGeometry">writeGeometry</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.TextFeature">
<span class="title">
<a href="ol.format.TextFeature.html">ol.format.TextFeature</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.TopoJSON">
<span class="title">
<a href="ol.format.TopoJSON.html">ol.format.TopoJSON</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.TopoJSON#readFeatures" class="">
<a href="ol.format.TopoJSON.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.TopoJSON#readProjection" class="">
<a href="ol.format.TopoJSON.html#readProjection">readProjection</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.WFS">
<span class="title">
<a href="ol.format.WFS.html">ol.format.WFS</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.format.WFS.FeatureCollectionMetadata" class="">
<a href="ol.format.WFS.html#.FeatureCollectionMetadata">FeatureCollectionMetadata</a>
</li>
<li data-name="ol.format.WFS.TransactionResponse" class="">
<a href="ol.format.WFS.html#.TransactionResponse">TransactionResponse</a>
</li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.WFS#readFeatureCollectionMetadata" class="">
<a href="ol.format.WFS.html#readFeatureCollectionMetadata">readFeatureCollectionMetadata</a>
</li>
<li data-name="ol.format.WFS#readFeatures" class="">
<a href="ol.format.WFS.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.WFS#readProjection" class="">
<a href="ol.format.WFS.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.WFS#readTransactionResponse" class="">
<a href="ol.format.WFS.html#readTransactionResponse">readTransactionResponse</a>
</li>
<li data-name="ol.format.WFS#writeGetFeature" class="">
<a href="ol.format.WFS.html#writeGetFeature">writeGetFeature</a>
</li>
<li data-name="ol.format.WFS#writeTransaction" class="">
<a href="ol.format.WFS.html#writeTransaction">writeTransaction</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.WKT">
<span class="title">
<a href="ol.format.WKT.html">ol.format.WKT</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.WKT#readFeature" class="">
<a href="ol.format.WKT.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.WKT#readFeatures" class="">
<a href="ol.format.WKT.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.WKT#readGeometry" class="">
<a href="ol.format.WKT.html#readGeometry">readGeometry</a>
</li>
<li data-name="ol.format.WKT#writeFeature" class="">
<a href="ol.format.WKT.html#writeFeature">writeFeature</a>
</li>
<li data-name="ol.format.WKT#writeFeatures" class="">
<a href="ol.format.WKT.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.WKT#writeGeometry" class="">
<a href="ol.format.WKT.html#writeGeometry">writeGeometry</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.WMSCapabilities">
<span class="title">
<a href="ol.format.WMSCapabilities.html">ol.format.WMSCapabilities</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.WMSCapabilities#read" class="unstable">
<a href="ol.format.WMSCapabilities.html#read">read</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.WMSGetFeatureInfo">
<span class="title">
<a href="ol.format.WMSGetFeatureInfo.html">ol.format.WMSGetFeatureInfo</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.WMSGetFeatureInfo#readFeatures" class="">
<a href="ol.format.WMSGetFeatureInfo.html#readFeatures">readFeatures</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.WMTSCapabilities">
<span class="title">
<a href="ol.format.WMTSCapabilities.html">ol.format.WMTSCapabilities</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.WMTSCapabilities#read" class="unstable">
<a href="ol.format.WMTSCapabilities.html#read">read</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.XML">
<span class="title">
<a href="ol.format.XML.html">ol.format.XML</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.XMLFeature">
<span class="title">
<a href="ol.format.XMLFeature.html">ol.format.XMLFeature</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.geom">
<span class="title">
<a href="ol.geom.html">ol.geom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.geom.GeometryLayout" class="">
<a href="ol.geom.html#.GeometryLayout">GeometryLayout</a>
</li>
<li data-name="ol.geom.GeometryType" class="">
<a href="ol.geom.html#.GeometryType">GeometryType</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.geom.Circle">
<span class="title">
<a href="ol.geom.Circle.html">ol.geom.Circle</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.Circle#applyTransform" class="">
<a href="ol.geom.Circle.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.Circle#changed" class="unstable">
<a href="ol.geom.Circle.html#changed">changed</a>
</li>
<li data-name="ol.geom.Circle#clone" class="unstable">
<a href="ol.geom.Circle.html#clone">clone</a>
</li>
<li data-name="ol.geom.Circle#dispatchEvent" class="unstable">
<a href="ol.geom.Circle.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.Circle#get" class="">
<a href="ol.geom.Circle.html#get">get</a>
</li>
<li data-name="ol.geom.Circle#getCenter" class="unstable">
<a href="ol.geom.Circle.html#getCenter">getCenter</a>
</li>
<li data-name="ol.geom.Circle#getClosestPoint" class="">
<a href="ol.geom.Circle.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.Circle#getExtent" class="">
<a href="ol.geom.Circle.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.Circle#getFirstCoordinate" class="">
<a href="ol.geom.Circle.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.Circle#getKeys" class="">
<a href="ol.geom.Circle.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.Circle#getLastCoordinate" class="">
<a href="ol.geom.Circle.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.Circle#getLayout" class="">
<a href="ol.geom.Circle.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.Circle#getProperties" class="">
<a href="ol.geom.Circle.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.Circle#getRadius" class="unstable">
<a href="ol.geom.Circle.html#getRadius">getRadius</a>
</li>
<li data-name="ol.geom.Circle#getRevision" class="unstable">
<a href="ol.geom.Circle.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.Circle#getType" class="unstable">
<a href="ol.geom.Circle.html#getType">getType</a>
</li>
<li data-name="ol.geom.Circle#intersectsExtent" class="">
<a href="ol.geom.Circle.html#intersectsExtent">intersectsExtent</a>
</li>
<li data-name="ol.geom.Circle#on" class="">
<a href="ol.geom.Circle.html#on">on</a>
</li>
<li data-name="ol.geom.Circle#once" class="">
<a href="ol.geom.Circle.html#once">once</a>
</li>
<li data-name="ol.geom.Circle#rotate" class="unstable">
<a href="ol.geom.Circle.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.Circle#set" class="">
<a href="ol.geom.Circle.html#set">set</a>
</li>
<li data-name="ol.geom.Circle#setCenter" class="unstable">
<a href="ol.geom.Circle.html#setCenter">setCenter</a>
</li>
<li data-name="ol.geom.Circle#setCenterAndRadius" class="unstable">
<a href="ol.geom.Circle.html#setCenterAndRadius">setCenterAndRadius</a>
</li>
<li data-name="ol.geom.Circle#setProperties" class="">
<a href="ol.geom.Circle.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.Circle#setRadius" class="unstable">
<a href="ol.geom.Circle.html#setRadius">setRadius</a>
</li>
<li data-name="ol.geom.Circle#simplify" class="unstable">
<a href="ol.geom.Circle.html#simplify">simplify</a>
</li>
<li data-name="ol.geom.Circle#transform" class="">
<a href="ol.geom.Circle.html#transform">transform</a>
</li>
<li data-name="ol.geom.Circle#translate" class="">
<a href="ol.geom.Circle.html#translate">translate</a>
</li>
<li data-name="ol.geom.Circle#un" class="">
<a href="ol.geom.Circle.html#un">un</a>
</li>
<li data-name="ol.geom.Circle#unByKey" class="">
<a href="ol.geom.Circle.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.Circle#unset" class="">
<a href="ol.geom.Circle.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.Geometry">
<span class="title">
<a href="ol.geom.Geometry.html">ol.geom.Geometry</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.Geometry#changed" class="unstable">
<a href="ol.geom.Geometry.html#changed">changed</a>
</li>
<li data-name="ol.geom.Geometry#dispatchEvent" class="unstable">
<a href="ol.geom.Geometry.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.Geometry#get" class="">
<a href="ol.geom.Geometry.html#get">get</a>
</li>
<li data-name="ol.geom.Geometry#getClosestPoint" class="">
<a href="ol.geom.Geometry.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.Geometry#getExtent" class="">
<a href="ol.geom.Geometry.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.Geometry#getKeys" class="">
<a href="ol.geom.Geometry.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.Geometry#getProperties" class="">
<a href="ol.geom.Geometry.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.Geometry#getRevision" class="unstable">
<a href="ol.geom.Geometry.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.Geometry#on" class="">
<a href="ol.geom.Geometry.html#on">on</a>
</li>
<li data-name="ol.geom.Geometry#once" class="">
<a href="ol.geom.Geometry.html#once">once</a>
</li>
<li data-name="ol.geom.Geometry#rotate" class="unstable">
<a href="ol.geom.Geometry.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.Geometry#set" class="">
<a href="ol.geom.Geometry.html#set">set</a>
</li>
<li data-name="ol.geom.Geometry#setProperties" class="">
<a href="ol.geom.Geometry.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.Geometry#simplify" class="unstable">
<a href="ol.geom.Geometry.html#simplify">simplify</a>
</li>
<li data-name="ol.geom.Geometry#transform" class="">
<a href="ol.geom.Geometry.html#transform">transform</a>
</li>
<li data-name="ol.geom.Geometry#un" class="">
<a href="ol.geom.Geometry.html#un">un</a>
</li>
<li data-name="ol.geom.Geometry#unByKey" class="">
<a href="ol.geom.Geometry.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.Geometry#unset" class="">
<a href="ol.geom.Geometry.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.GeometryCollection">
<span class="title">
<a href="ol.geom.GeometryCollection.html">ol.geom.GeometryCollection</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.GeometryCollection#applyTransform" class="">
<a href="ol.geom.GeometryCollection.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.GeometryCollection#changed" class="unstable">
<a href="ol.geom.GeometryCollection.html#changed">changed</a>
</li>
<li data-name="ol.geom.GeometryCollection#clone" class="">
<a href="ol.geom.GeometryCollection.html#clone">clone</a>
</li>
<li data-name="ol.geom.GeometryCollection#dispatchEvent" class="unstable">
<a href="ol.geom.GeometryCollection.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.GeometryCollection#get" class="">
<a href="ol.geom.GeometryCollection.html#get">get</a>
</li>
<li data-name="ol.geom.GeometryCollection#getClosestPoint" class="">
<a href="ol.geom.GeometryCollection.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.GeometryCollection#getExtent" class="">
<a href="ol.geom.GeometryCollection.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.GeometryCollection#getGeometries" class="">
<a href="ol.geom.GeometryCollection.html#getGeometries">getGeometries</a>
</li>
<li data-name="ol.geom.GeometryCollection#getKeys" class="">
<a href="ol.geom.GeometryCollection.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.GeometryCollection#getProperties" class="">
<a href="ol.geom.GeometryCollection.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.GeometryCollection#getRevision" class="unstable">
<a href="ol.geom.GeometryCollection.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.GeometryCollection#getType" class="">
<a href="ol.geom.GeometryCollection.html#getType">getType</a>
</li>
<li data-name="ol.geom.GeometryCollection#intersectsExtent" class="">
<a href="ol.geom.GeometryCollection.html#intersectsExtent">intersectsExtent</a>
</li>
<li data-name="ol.geom.GeometryCollection#on" class="">
<a href="ol.geom.GeometryCollection.html#on">on</a>
</li>
<li data-name="ol.geom.GeometryCollection#once" class="">
<a href="ol.geom.GeometryCollection.html#once">once</a>
</li>
<li data-name="ol.geom.GeometryCollection#rotate" class="unstable">
<a href="ol.geom.GeometryCollection.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.GeometryCollection#set" class="">
<a href="ol.geom.GeometryCollection.html#set">set</a>
</li>
<li data-name="ol.geom.GeometryCollection#setGeometries" class="">
<a href="ol.geom.GeometryCollection.html#setGeometries">setGeometries</a>
</li>
<li data-name="ol.geom.GeometryCollection#setProperties" class="">
<a href="ol.geom.GeometryCollection.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.GeometryCollection#simplify" class="unstable">
<a href="ol.geom.GeometryCollection.html#simplify">simplify</a>
</li>
<li data-name="ol.geom.GeometryCollection#transform" class="">
<a href="ol.geom.GeometryCollection.html#transform">transform</a>
</li>
<li data-name="ol.geom.GeometryCollection#translate" class="unstable">
<a href="ol.geom.GeometryCollection.html#translate">translate</a>
</li>
<li data-name="ol.geom.GeometryCollection#un" class="">
<a href="ol.geom.GeometryCollection.html#un">un</a>
</li>
<li data-name="ol.geom.GeometryCollection#unByKey" class="">
<a href="ol.geom.GeometryCollection.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.GeometryCollection#unset" class="">
<a href="ol.geom.GeometryCollection.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.LineString">
<span class="title">
<a href="ol.geom.LineString.html">ol.geom.LineString</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.LineString#appendCoordinate" class="">
<a href="ol.geom.LineString.html#appendCoordinate">appendCoordinate</a>
</li>
<li data-name="ol.geom.LineString#applyTransform" class="">
<a href="ol.geom.LineString.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.LineString#changed" class="unstable">
<a href="ol.geom.LineString.html#changed">changed</a>
</li>
<li data-name="ol.geom.LineString#clone" class="">
<a href="ol.geom.LineString.html#clone">clone</a>
</li>
<li data-name="ol.geom.LineString#dispatchEvent" class="unstable">
<a href="ol.geom.LineString.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.LineString#forEachSegment" class="unstable">
<a href="ol.geom.LineString.html#forEachSegment">forEachSegment</a>
</li>
<li data-name="ol.geom.LineString#get" class="">
<a href="ol.geom.LineString.html#get">get</a>
</li>
<li data-name="ol.geom.LineString#getClosestPoint" class="">
<a href="ol.geom.LineString.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.LineString#getCoordinateAt" class="unstable">
<a href="ol.geom.LineString.html#getCoordinateAt">getCoordinateAt</a>
</li>
<li data-name="ol.geom.LineString#getCoordinateAtM" class="">
<a href="ol.geom.LineString.html#getCoordinateAtM">getCoordinateAtM</a>
</li>
<li data-name="ol.geom.LineString#getCoordinates" class="">
<a href="ol.geom.LineString.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.LineString#getExtent" class="">
<a href="ol.geom.LineString.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.LineString#getFirstCoordinate" class="">
<a href="ol.geom.LineString.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.LineString#getKeys" class="">
<a href="ol.geom.LineString.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.LineString#getLastCoordinate" class="">
<a href="ol.geom.LineString.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.LineString#getLayout" class="">
<a href="ol.geom.LineString.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.LineString#getLength" class="">
<a href="ol.geom.LineString.html#getLength">getLength</a>
</li>
<li data-name="ol.geom.LineString#getProperties" class="">
<a href="ol.geom.LineString.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.LineString#getRevision" class="unstable">
<a href="ol.geom.LineString.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.LineString#getType" class="">
<a href="ol.geom.LineString.html#getType">getType</a>
</li>
<li data-name="ol.geom.LineString#intersectsExtent" class="">
<a href="ol.geom.LineString.html#intersectsExtent">intersectsExtent</a>
</li>
<li data-name="ol.geom.LineString#on" class="">
<a href="ol.geom.LineString.html#on">on</a>
</li>
<li data-name="ol.geom.LineString#once" class="">
<a href="ol.geom.LineString.html#once">once</a>
</li>
<li data-name="ol.geom.LineString#rotate" class="unstable">
<a href="ol.geom.LineString.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.LineString#set" class="">
<a href="ol.geom.LineString.html#set">set</a>
</li>
<li data-name="ol.geom.LineString#setCoordinates" class="">
<a href="ol.geom.LineString.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.LineString#setProperties" class="">
<a href="ol.geom.LineString.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.LineString#simplify" class="unstable">
<a href="ol.geom.LineString.html#simplify">simplify</a>
</li>
<li data-name="ol.geom.LineString#transform" class="">
<a href="ol.geom.LineString.html#transform">transform</a>
</li>
<li data-name="ol.geom.LineString#translate" class="">
<a href="ol.geom.LineString.html#translate">translate</a>
</li>
<li data-name="ol.geom.LineString#un" class="">
<a href="ol.geom.LineString.html#un">un</a>
</li>
<li data-name="ol.geom.LineString#unByKey" class="">
<a href="ol.geom.LineString.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.LineString#unset" class="">
<a href="ol.geom.LineString.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.LinearRing">
<span class="title">
<a href="ol.geom.LinearRing.html">ol.geom.LinearRing</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.LinearRing#applyTransform" class="">
<a href="ol.geom.LinearRing.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.LinearRing#changed" class="unstable">
<a href="ol.geom.LinearRing.html#changed">changed</a>
</li>
<li data-name="ol.geom.LinearRing#clone" class="">
<a href="ol.geom.LinearRing.html#clone">clone</a>
</li>
<li data-name="ol.geom.LinearRing#dispatchEvent" class="unstable">
<a href="ol.geom.LinearRing.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.LinearRing#get" class="">
<a href="ol.geom.LinearRing.html#get">get</a>
</li>
<li data-name="ol.geom.LinearRing#getArea" class="">
<a href="ol.geom.LinearRing.html#getArea">getArea</a>
</li>
<li data-name="ol.geom.LinearRing#getClosestPoint" class="">
<a href="ol.geom.LinearRing.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.LinearRing#getCoordinates" class="">
<a href="ol.geom.LinearRing.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.LinearRing#getExtent" class="">
<a href="ol.geom.LinearRing.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.LinearRing#getFirstCoordinate" class="">
<a href="ol.geom.LinearRing.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.LinearRing#getKeys" class="">
<a href="ol.geom.LinearRing.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.LinearRing#getLastCoordinate" class="">
<a href="ol.geom.LinearRing.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.LinearRing#getLayout" class="">
<a href="ol.geom.LinearRing.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.LinearRing#getProperties" class="">
<a href="ol.geom.LinearRing.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.LinearRing#getRevision" class="unstable">
<a href="ol.geom.LinearRing.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.LinearRing#getType" class="">
<a href="ol.geom.LinearRing.html#getType">getType</a>
</li>
<li data-name="ol.geom.LinearRing#on" class="">
<a href="ol.geom.LinearRing.html#on">on</a>
</li>
<li data-name="ol.geom.LinearRing#once" class="">
<a href="ol.geom.LinearRing.html#once">once</a>
</li>
<li data-name="ol.geom.LinearRing#rotate" class="unstable">
<a href="ol.geom.LinearRing.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.LinearRing#set" class="">
<a href="ol.geom.LinearRing.html#set">set</a>
</li>
<li data-name="ol.geom.LinearRing#setCoordinates" class="">
<a href="ol.geom.LinearRing.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.LinearRing#setProperties" class="">
<a href="ol.geom.LinearRing.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.LinearRing#simplify" class="unstable">
<a href="ol.geom.LinearRing.html#simplify">simplify</a>
</li>
<li data-name="ol.geom.LinearRing#transform" class="">
<a href="ol.geom.LinearRing.html#transform">transform</a>
</li>
<li data-name="ol.geom.LinearRing#translate" class="">
<a href="ol.geom.LinearRing.html#translate">translate</a>
</li>
<li data-name="ol.geom.LinearRing#un" class="">
<a href="ol.geom.LinearRing.html#un">un</a>
</li>
<li data-name="ol.geom.LinearRing#unByKey" class="">
<a href="ol.geom.LinearRing.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.LinearRing#unset" class="">
<a href="ol.geom.LinearRing.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.MultiLineString">
<span class="title">
<a href="ol.geom.MultiLineString.html">ol.geom.MultiLineString</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.MultiLineString#appendLineString" class="">
<a href="ol.geom.MultiLineString.html#appendLineString">appendLineString</a>
</li>
<li data-name="ol.geom.MultiLineString#applyTransform" class="">
<a href="ol.geom.MultiLineString.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.MultiLineString#changed" class="unstable">
<a href="ol.geom.MultiLineString.html#changed">changed</a>
</li>
<li data-name="ol.geom.MultiLineString#clone" class="">
<a href="ol.geom.MultiLineString.html#clone">clone</a>
</li>
<li data-name="ol.geom.MultiLineString#dispatchEvent" class="unstable">
<a href="ol.geom.MultiLineString.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.MultiLineString#get" class="">
<a href="ol.geom.MultiLineString.html#get">get</a>
</li>
<li data-name="ol.geom.MultiLineString#getClosestPoint" class="">
<a href="ol.geom.MultiLineString.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.MultiLineString#getCoordinateAtM" class="">
<a href="ol.geom.MultiLineString.html#getCoordinateAtM">getCoordinateAtM</a>
</li>
<li data-name="ol.geom.MultiLineString#getCoordinates" class="">
<a href="ol.geom.MultiLineString.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.MultiLineString#getExtent" class="">
<a href="ol.geom.MultiLineString.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.MultiLineString#getFirstCoordinate" class="">
<a href="ol.geom.MultiLineString.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.MultiLineString#getKeys" class="">
<a href="ol.geom.MultiLineString.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.MultiLineString#getLastCoordinate" class="">
<a href="ol.geom.MultiLineString.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.MultiLineString#getLayout" class="">
<a href="ol.geom.MultiLineString.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.MultiLineString#getLineString" class="">
<a href="ol.geom.MultiLineString.html#getLineString">getLineString</a>
</li>
<li data-name="ol.geom.MultiLineString#getLineStrings" class="">
<a href="ol.geom.MultiLineString.html#getLineStrings">getLineStrings</a>
</li>
<li data-name="ol.geom.MultiLineString#getProperties" class="">
<a href="ol.geom.MultiLineString.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.MultiLineString#getRevision" class="unstable">
<a href="ol.geom.MultiLineString.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.MultiLineString#getType" class="">
<a href="ol.geom.MultiLineString.html#getType">getType</a>
</li>
<li data-name="ol.geom.MultiLineString#intersectsExtent" class="">
<a href="ol.geom.MultiLineString.html#intersectsExtent">intersectsExtent</a>
</li>
<li data-name="ol.geom.MultiLineString#on" class="">
<a href="ol.geom.MultiLineString.html#on">on</a>
</li>
<li data-name="ol.geom.MultiLineString#once" class="">
<a href="ol.geom.MultiLineString.html#once">once</a>
</li>
<li data-name="ol.geom.MultiLineString#rotate" class="unstable">
<a href="ol.geom.MultiLineString.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.MultiLineString#set" class="">
<a href="ol.geom.MultiLineString.html#set">set</a>
</li>
<li data-name="ol.geom.MultiLineString#setCoordinates" class="">
<a href="ol.geom.MultiLineString.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.MultiLineString#setProperties" class="">
<a href="ol.geom.MultiLineString.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.MultiLineString#simplify" class="unstable">
<a href="ol.geom.MultiLineString.html#simplify">simplify</a>
</li>
<li data-name="ol.geom.MultiLineString#transform" class="">
<a href="ol.geom.MultiLineString.html#transform">transform</a>
</li>
<li data-name="ol.geom.MultiLineString#translate" class="">
<a href="ol.geom.MultiLineString.html#translate">translate</a>
</li>
<li data-name="ol.geom.MultiLineString#un" class="">
<a href="ol.geom.MultiLineString.html#un">un</a>
</li>
<li data-name="ol.geom.MultiLineString#unByKey" class="">
<a href="ol.geom.MultiLineString.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.MultiLineString#unset" class="">
<a href="ol.geom.MultiLineString.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.MultiPoint">
<span class="title">
<a href="ol.geom.MultiPoint.html">ol.geom.MultiPoint</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.MultiPoint#appendPoint" class="">
<a href="ol.geom.MultiPoint.html#appendPoint">appendPoint</a>
</li>
<li data-name="ol.geom.MultiPoint#applyTransform" class="">
<a href="ol.geom.MultiPoint.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.MultiPoint#changed" class="unstable">
<a href="ol.geom.MultiPoint.html#changed">changed</a>
</li>
<li data-name="ol.geom.MultiPoint#clone" class="">
<a href="ol.geom.MultiPoint.html#clone">clone</a>
</li>
<li data-name="ol.geom.MultiPoint#dispatchEvent" class="unstable">
<a href="ol.geom.MultiPoint.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.MultiPoint#get" class="">
<a href="ol.geom.MultiPoint.html#get">get</a>
</li>
<li data-name="ol.geom.MultiPoint#getClosestPoint" class="">
<a href="ol.geom.MultiPoint.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.MultiPoint#getCoordinates" class="">
<a href="ol.geom.MultiPoint.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.MultiPoint#getExtent" class="">
<a href="ol.geom.MultiPoint.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.MultiPoint#getFirstCoordinate" class="">
<a href="ol.geom.MultiPoint.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.MultiPoint#getKeys" class="">
<a href="ol.geom.MultiPoint.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.MultiPoint#getLastCoordinate" class="">
<a href="ol.geom.MultiPoint.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.MultiPoint#getLayout" class="">
<a href="ol.geom.MultiPoint.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.MultiPoint#getPoint" class="">
<a href="ol.geom.MultiPoint.html#getPoint">getPoint</a>
</li>
<li data-name="ol.geom.MultiPoint#getPoints" class="">
<a href="ol.geom.MultiPoint.html#getPoints">getPoints</a>
</li>
<li data-name="ol.geom.MultiPoint#getProperties" class="">
<a href="ol.geom.MultiPoint.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.MultiPoint#getRevision" class="unstable">
<a href="ol.geom.MultiPoint.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.MultiPoint#getType" class="">
<a href="ol.geom.MultiPoint.html#getType">getType</a>
</li>
<li data-name="ol.geom.MultiPoint#intersectsExtent" class="">
<a href="ol.geom.MultiPoint.html#intersectsExtent">intersectsExtent</a>
</li>
<li data-name="ol.geom.MultiPoint#on" class="">
<a href="ol.geom.MultiPoint.html#on">on</a>
</li>
<li data-name="ol.geom.MultiPoint#once" class="">
<a href="ol.geom.MultiPoint.html#once">once</a>
</li>
<li data-name="ol.geom.MultiPoint#rotate" class="unstable">
<a href="ol.geom.MultiPoint.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.MultiPoint#set" class="">
<a href="ol.geom.MultiPoint.html#set">set</a>
</li>
<li data-name="ol.geom.MultiPoint#setCoordinates" class="">
<a href="ol.geom.MultiPoint.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.MultiPoint#setProperties" class="">
<a href="ol.geom.MultiPoint.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.MultiPoint#simplify" class="unstable">
<a href="ol.geom.MultiPoint.html#simplify">simplify</a>
</li>
<li data-name="ol.geom.MultiPoint#transform" class="">
<a href="ol.geom.MultiPoint.html#transform">transform</a>
</li>
<li data-name="ol.geom.MultiPoint#translate" class="">
<a href="ol.geom.MultiPoint.html#translate">translate</a>
</li>
<li data-name="ol.geom.MultiPoint#un" class="">
<a href="ol.geom.MultiPoint.html#un">un</a>
</li>
<li data-name="ol.geom.MultiPoint#unByKey" class="">
<a href="ol.geom.MultiPoint.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.MultiPoint#unset" class="">
<a href="ol.geom.MultiPoint.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.MultiPolygon">
<span class="title">
<a href="ol.geom.MultiPolygon.html">ol.geom.MultiPolygon</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.MultiPolygon#appendPolygon" class="">
<a href="ol.geom.MultiPolygon.html#appendPolygon">appendPolygon</a>
</li>
<li data-name="ol.geom.MultiPolygon#applyTransform" class="">
<a href="ol.geom.MultiPolygon.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.MultiPolygon#changed" class="unstable">
<a href="ol.geom.MultiPolygon.html#changed">changed</a>
</li>
<li data-name="ol.geom.MultiPolygon#clone" class="">
<a href="ol.geom.MultiPolygon.html#clone">clone</a>
</li>
<li data-name="ol.geom.MultiPolygon#dispatchEvent" class="unstable">
<a href="ol.geom.MultiPolygon.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.MultiPolygon#get" class="">
<a href="ol.geom.MultiPolygon.html#get">get</a>
</li>
<li data-name="ol.geom.MultiPolygon#getArea" class="">
<a href="ol.geom.MultiPolygon.html#getArea">getArea</a>
</li>
<li data-name="ol.geom.MultiPolygon#getClosestPoint" class="">
<a href="ol.geom.MultiPolygon.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.MultiPolygon#getCoordinates" class="">
<a href="ol.geom.MultiPolygon.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.MultiPolygon#getExtent" class="">
<a href="ol.geom.MultiPolygon.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.MultiPolygon#getFirstCoordinate" class="">
<a href="ol.geom.MultiPolygon.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.MultiPolygon#getInteriorPoints" class="">
<a href="ol.geom.MultiPolygon.html#getInteriorPoints">getInteriorPoints</a>
</li>
<li data-name="ol.geom.MultiPolygon#getKeys" class="">
<a href="ol.geom.MultiPolygon.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.MultiPolygon#getLastCoordinate" class="">
<a href="ol.geom.MultiPolygon.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.MultiPolygon#getLayout" class="">
<a href="ol.geom.MultiPolygon.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.MultiPolygon#getPolygon" class="">
<a href="ol.geom.MultiPolygon.html#getPolygon">getPolygon</a>
</li>
<li data-name="ol.geom.MultiPolygon#getPolygons" class="">
<a href="ol.geom.MultiPolygon.html#getPolygons">getPolygons</a>
</li>
<li data-name="ol.geom.MultiPolygon#getProperties" class="">
<a href="ol.geom.MultiPolygon.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.MultiPolygon#getRevision" class="unstable">
<a href="ol.geom.MultiPolygon.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.MultiPolygon#getType" class="">
<a href="ol.geom.MultiPolygon.html#getType">getType</a>
</li>
<li data-name="ol.geom.MultiPolygon#intersectsExtent" class="">
<a href="ol.geom.MultiPolygon.html#intersectsExtent">intersectsExtent</a>
</li>
<li data-name="ol.geom.MultiPolygon#on" class="">
<a href="ol.geom.MultiPolygon.html#on">on</a>
</li>
<li data-name="ol.geom.MultiPolygon#once" class="">
<a href="ol.geom.MultiPolygon.html#once">once</a>
</li>
<li data-name="ol.geom.MultiPolygon#rotate" class="unstable">
<a href="ol.geom.MultiPolygon.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.MultiPolygon#set" class="">
<a href="ol.geom.MultiPolygon.html#set">set</a>
</li>
<li data-name="ol.geom.MultiPolygon#setCoordinates" class="">
<a href="ol.geom.MultiPolygon.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.MultiPolygon#setProperties" class="">
<a href="ol.geom.MultiPolygon.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.MultiPolygon#simplify" class="unstable">
<a href="ol.geom.MultiPolygon.html#simplify">simplify</a>
</li>
<li data-name="ol.geom.MultiPolygon#transform" class="">
<a href="ol.geom.MultiPolygon.html#transform">transform</a>
</li>
<li data-name="ol.geom.MultiPolygon#translate" class="">
<a href="ol.geom.MultiPolygon.html#translate">translate</a>
</li>
<li data-name="ol.geom.MultiPolygon#un" class="">
<a href="ol.geom.MultiPolygon.html#un">un</a>
</li>
<li data-name="ol.geom.MultiPolygon#unByKey" class="">
<a href="ol.geom.MultiPolygon.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.MultiPolygon#unset" class="">
<a href="ol.geom.MultiPolygon.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.Point">
<span class="title">
<a href="ol.geom.Point.html">ol.geom.Point</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.Point#applyTransform" class="">
<a href="ol.geom.Point.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.Point#changed" class="unstable">
<a href="ol.geom.Point.html#changed">changed</a>
</li>
<li data-name="ol.geom.Point#clone" class="">
<a href="ol.geom.Point.html#clone">clone</a>
</li>
<li data-name="ol.geom.Point#dispatchEvent" class="unstable">
<a href="ol.geom.Point.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.Point#get" class="">
<a href="ol.geom.Point.html#get">get</a>
</li>
<li data-name="ol.geom.Point#getClosestPoint" class="">
<a href="ol.geom.Point.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.Point#getCoordinates" class="">
<a href="ol.geom.Point.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.Point#getExtent" class="">
<a href="ol.geom.Point.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.Point#getFirstCoordinate" class="">
<a href="ol.geom.Point.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.Point#getKeys" class="">
<a href="ol.geom.Point.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.Point#getLastCoordinate" class="">
<a href="ol.geom.Point.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.Point#getLayout" class="">
<a href="ol.geom.Point.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.Point#getProperties" class="">
<a href="ol.geom.Point.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.Point#getRevision" class="unstable">
<a href="ol.geom.Point.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.Point#getType" class="">
<a href="ol.geom.Point.html#getType">getType</a>
</li>
<li data-name="ol.geom.Point#intersectsExtent" class="">
<a href="ol.geom.Point.html#intersectsExtent">intersectsExtent</a>
</li>
<li data-name="ol.geom.Point#on" class="">
<a href="ol.geom.Point.html#on">on</a>
</li>
<li data-name="ol.geom.Point#once" class="">
<a href="ol.geom.Point.html#once">once</a>
</li>
<li data-name="ol.geom.Point#rotate" class="unstable">
<a href="ol.geom.Point.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.Point#set" class="">
<a href="ol.geom.Point.html#set">set</a>
</li>
<li data-name="ol.geom.Point#setCoordinates" class="">
<a href="ol.geom.Point.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.Point#setProperties" class="">
<a href="ol.geom.Point.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.Point#simplify" class="unstable">
<a href="ol.geom.Point.html#simplify">simplify</a>
</li>
<li data-name="ol.geom.Point#transform" class="">
<a href="ol.geom.Point.html#transform">transform</a>
</li>
<li data-name="ol.geom.Point#translate" class="">
<a href="ol.geom.Point.html#translate">translate</a>
</li>
<li data-name="ol.geom.Point#un" class="">
<a href="ol.geom.Point.html#un">un</a>
</li>
<li data-name="ol.geom.Point#unByKey" class="">
<a href="ol.geom.Point.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.Point#unset" class="">
<a href="ol.geom.Point.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.Polygon">
<span class="title">
<a href="ol.geom.Polygon.html">ol.geom.Polygon</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.Polygon.circular" class="">
<a href="ol.geom.Polygon.html#.circular">circular</a>
</li>
<li data-name="ol.geom.Polygon.fromCircle" class="unstable">
<a href="ol.geom.Polygon.html#.fromCircle">fromCircle</a>
</li>
<li data-name="ol.geom.Polygon.fromExtent" class="unstable">
<a href="ol.geom.Polygon.html#.fromExtent">fromExtent</a>
</li>
<li data-name="ol.geom.Polygon#appendLinearRing" class="">
<a href="ol.geom.Polygon.html#appendLinearRing">appendLinearRing</a>
</li>
<li data-name="ol.geom.Polygon#applyTransform" class="">
<a href="ol.geom.Polygon.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.Polygon#changed" class="unstable">
<a href="ol.geom.Polygon.html#changed">changed</a>
</li>
<li data-name="ol.geom.Polygon#clone" class="">
<a href="ol.geom.Polygon.html#clone">clone</a>
</li>
<li data-name="ol.geom.Polygon#dispatchEvent" class="unstable">
<a href="ol.geom.Polygon.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.Polygon#get" class="">
<a href="ol.geom.Polygon.html#get">get</a>
</li>
<li data-name="ol.geom.Polygon#getArea" class="">
<a href="ol.geom.Polygon.html#getArea">getArea</a>
</li>
<li data-name="ol.geom.Polygon#getClosestPoint" class="">
<a href="ol.geom.Polygon.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.Polygon#getCoordinates" class="">
<a href="ol.geom.Polygon.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.Polygon#getExtent" class="">
<a href="ol.geom.Polygon.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.Polygon#getFirstCoordinate" class="">
<a href="ol.geom.Polygon.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.Polygon#getInteriorPoint" class="">
<a href="ol.geom.Polygon.html#getInteriorPoint">getInteriorPoint</a>
</li>
<li data-name="ol.geom.Polygon#getKeys" class="">
<a href="ol.geom.Polygon.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.Polygon#getLastCoordinate" class="">
<a href="ol.geom.Polygon.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.Polygon#getLayout" class="">
<a href="ol.geom.Polygon.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.Polygon#getLinearRing" class="">
<a href="ol.geom.Polygon.html#getLinearRing">getLinearRing</a>
</li>
<li data-name="ol.geom.Polygon#getLinearRingCount" class="unstable">
<a href="ol.geom.Polygon.html#getLinearRingCount">getLinearRingCount</a>
</li>
<li data-name="ol.geom.Polygon#getLinearRings" class="">
<a href="ol.geom.Polygon.html#getLinearRings">getLinearRings</a>
</li>
<li data-name="ol.geom.Polygon#getProperties" class="">
<a href="ol.geom.Polygon.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.Polygon#getRevision" class="unstable">
<a href="ol.geom.Polygon.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.Polygon#getType" class="">
<a href="ol.geom.Polygon.html#getType">getType</a>
</li>
<li data-name="ol.geom.Polygon#intersectsExtent" class="">
<a href="ol.geom.Polygon.html#intersectsExtent">intersectsExtent</a>
</li>
<li data-name="ol.geom.Polygon#on" class="">
<a href="ol.geom.Polygon.html#on">on</a>
</li>
<li data-name="ol.geom.Polygon#once" class="">
<a href="ol.geom.Polygon.html#once">once</a>
</li>
<li data-name="ol.geom.Polygon#rotate" class="unstable">
<a href="ol.geom.Polygon.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.Polygon#set" class="">
<a href="ol.geom.Polygon.html#set">set</a>
</li>
<li data-name="ol.geom.Polygon#setCoordinates" class="">
<a href="ol.geom.Polygon.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.Polygon#setProperties" class="">
<a href="ol.geom.Polygon.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.Polygon#simplify" class="unstable">
<a href="ol.geom.Polygon.html#simplify">simplify</a>
</li>
<li data-name="ol.geom.Polygon#transform" class="">
<a href="ol.geom.Polygon.html#transform">transform</a>
</li>
<li data-name="ol.geom.Polygon#translate" class="">
<a href="ol.geom.Polygon.html#translate">translate</a>
</li>
<li data-name="ol.geom.Polygon#un" class="">
<a href="ol.geom.Polygon.html#un">un</a>
</li>
<li data-name="ol.geom.Polygon#unByKey" class="">
<a href="ol.geom.Polygon.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.Polygon#unset" class="">
<a href="ol.geom.Polygon.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.SimpleGeometry">
<span class="title">
<a href="ol.geom.SimpleGeometry.html">ol.geom.SimpleGeometry</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.SimpleGeometry#applyTransform" class="">
<a href="ol.geom.SimpleGeometry.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.SimpleGeometry#changed" class="unstable">
<a href="ol.geom.SimpleGeometry.html#changed">changed</a>
</li>
<li data-name="ol.geom.SimpleGeometry#dispatchEvent" class="unstable">
<a href="ol.geom.SimpleGeometry.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.SimpleGeometry#get" class="">
<a href="ol.geom.SimpleGeometry.html#get">get</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getClosestPoint" class="">
<a href="ol.geom.SimpleGeometry.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getExtent" class="">
<a href="ol.geom.SimpleGeometry.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getFirstCoordinate" class="">
<a href="ol.geom.SimpleGeometry.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getKeys" class="">
<a href="ol.geom.SimpleGeometry.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getLastCoordinate" class="">
<a href="ol.geom.SimpleGeometry.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getLayout" class="">
<a href="ol.geom.SimpleGeometry.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getProperties" class="">
<a href="ol.geom.SimpleGeometry.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getRevision" class="unstable">
<a href="ol.geom.SimpleGeometry.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.SimpleGeometry#on" class="">
<a href="ol.geom.SimpleGeometry.html#on">on</a>
</li>
<li data-name="ol.geom.SimpleGeometry#once" class="">
<a href="ol.geom.SimpleGeometry.html#once">once</a>
</li>
<li data-name="ol.geom.SimpleGeometry#rotate" class="unstable">
<a href="ol.geom.SimpleGeometry.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.SimpleGeometry#set" class="">
<a href="ol.geom.SimpleGeometry.html#set">set</a>
</li>
<li data-name="ol.geom.SimpleGeometry#setProperties" class="">
<a href="ol.geom.SimpleGeometry.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.SimpleGeometry#simplify" class="unstable">
<a href="ol.geom.SimpleGeometry.html#simplify">simplify</a>
</li>
<li data-name="ol.geom.SimpleGeometry#transform" class="">
<a href="ol.geom.SimpleGeometry.html#transform">transform</a>
</li>
<li data-name="ol.geom.SimpleGeometry#translate" class="">
<a href="ol.geom.SimpleGeometry.html#translate">translate</a>
</li>
<li data-name="ol.geom.SimpleGeometry#un" class="">
<a href="ol.geom.SimpleGeometry.html#un">un</a>
</li>
<li data-name="ol.geom.SimpleGeometry#unByKey" class="">
<a href="ol.geom.SimpleGeometry.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.SimpleGeometry#unset" class="">
<a href="ol.geom.SimpleGeometry.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.has">
<span class="title">
<a href="ol.has.html">ol.has</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.has.CANVAS"><a href="ol.has.html#.CANVAS">CANVAS</a></li>
<li data-name="ol.has.DEVICE_ORIENTATION"><a href="ol.has.html#.DEVICE_ORIENTATION">DEVICE_ORIENTATION</a></li>
<li data-name="ol.has.DEVICE_PIXEL_RATIO"><a href="ol.has.html#.DEVICE_PIXEL_RATIO">DEVICE_PIXEL_RATIO</a></li>
<li data-name="ol.has.GEOLOCATION"><a href="ol.has.html#.GEOLOCATION">GEOLOCATION</a></li>
<li data-name="ol.has.TOUCH"><a href="ol.has.html#.TOUCH">TOUCH</a></li>
<li data-name="ol.has.WEBGL"><a href="ol.has.html#.WEBGL">WEBGL</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.interaction">
<span class="title">
<a href="ol.interaction.html">ol.interaction</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.interaction.DragBoxEndConditionType" class="unstable">
<a href="ol.interaction.html#.DragBoxEndConditionType">DragBoxEndConditionType</a>
</li>
<li data-name="ol.interaction.DrawGeometryFunctionType" class="unstable">
<a href="ol.interaction.html#.DrawGeometryFunctionType">DrawGeometryFunctionType</a>
</li>
<li data-name="ol.interaction.SelectFilterFunction" class="unstable">
<a href="ol.interaction.html#.SelectFilterFunction">SelectFilterFunction</a>
</li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.defaults" class="">
<a href="ol.interaction.html#.defaults">defaults</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.interaction.DoubleClickZoom">
<span class="title">
<a href="ol.interaction.DoubleClickZoom.html">ol.interaction.DoubleClickZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DoubleClickZoom.handleEvent" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#.handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#changed" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#dispatchEvent" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#get" class="">
<a href="ol.interaction.DoubleClickZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#getActive" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#getKeys" class="">
<a href="ol.interaction.DoubleClickZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#getMap" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#getProperties" class="">
<a href="ol.interaction.DoubleClickZoom.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#getRevision" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#on" class="">
<a href="ol.interaction.DoubleClickZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#once" class="">
<a href="ol.interaction.DoubleClickZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#set" class="">
<a href="ol.interaction.DoubleClickZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#setActive" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#setProperties" class="">
<a href="ol.interaction.DoubleClickZoom.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#un" class="">
<a href="ol.interaction.DoubleClickZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#unByKey" class="">
<a href="ol.interaction.DoubleClickZoom.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#unset" class="">
<a href="ol.interaction.DoubleClickZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragAndDrop">
<span class="title">
<a href="ol.interaction.DragAndDrop.html">ol.interaction.DragAndDrop</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.interaction.DragAndDrop.handleEvent"><a href="ol.interaction.DragAndDrop.html#.handleEvent">handleEvent</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragAndDrop#changed" class="unstable">
<a href="ol.interaction.DragAndDrop.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragAndDrop#dispatchEvent" class="unstable">
<a href="ol.interaction.DragAndDrop.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.DragAndDrop#get" class="">
<a href="ol.interaction.DragAndDrop.html#get">get</a>
</li>
<li data-name="ol.interaction.DragAndDrop#getActive" class="unstable">
<a href="ol.interaction.DragAndDrop.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DragAndDrop#getKeys" class="">
<a href="ol.interaction.DragAndDrop.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragAndDrop#getMap" class="unstable">
<a href="ol.interaction.DragAndDrop.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.DragAndDrop#getProperties" class="">
<a href="ol.interaction.DragAndDrop.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.DragAndDrop#getRevision" class="unstable">
<a href="ol.interaction.DragAndDrop.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragAndDrop#on" class="">
<a href="ol.interaction.DragAndDrop.html#on">on</a>
</li>
<li data-name="ol.interaction.DragAndDrop#once" class="">
<a href="ol.interaction.DragAndDrop.html#once">once</a>
</li>
<li data-name="ol.interaction.DragAndDrop#set" class="">
<a href="ol.interaction.DragAndDrop.html#set">set</a>
</li>
<li data-name="ol.interaction.DragAndDrop#setActive" class="unstable">
<a href="ol.interaction.DragAndDrop.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragAndDrop#setProperties" class="">
<a href="ol.interaction.DragAndDrop.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.DragAndDrop#un" class="">
<a href="ol.interaction.DragAndDrop.html#un">un</a>
</li>
<li data-name="ol.interaction.DragAndDrop#unByKey" class="">
<a href="ol.interaction.DragAndDrop.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.DragAndDrop#unset" class="">
<a href="ol.interaction.DragAndDrop.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.interaction.DragAndDropEvent#event:addfeatures" class="">
<a href="ol.interaction.DragAndDropEvent.html#event:addfeatures">addfeatures</a>
</li>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragAndDropEvent">
<span class="title">
<a href="ol.interaction.DragAndDropEvent.html">ol.interaction.DragAndDropEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.interaction.DragAndDropEvent#features"><a href="ol.interaction.DragAndDropEvent.html#features">features</a></li>
<li data-name="ol.interaction.DragAndDropEvent#file"><a href="ol.interaction.DragAndDropEvent.html#file">file</a></li>
<li data-name="ol.interaction.DragAndDropEvent#projection"><a href="ol.interaction.DragAndDropEvent.html#projection">projection</a></li>
<li data-name="ol.interaction.DragAndDropEvent#target"><a href="ol.interaction.DragAndDropEvent.html#target">target</a></li>
<li data-name="ol.interaction.DragAndDropEvent#type"><a href="ol.interaction.DragAndDropEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragAndDropEvent#preventDefault" class="">
<a href="ol.interaction.DragAndDropEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.interaction.DragAndDropEvent#stopPropagation" class="">
<a href="ol.interaction.DragAndDropEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.interaction.DragBox">
<span class="title">
<a href="ol.interaction.DragBox.html">ol.interaction.DragBox</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragBox#changed" class="unstable">
<a href="ol.interaction.DragBox.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragBox#dispatchEvent" class="unstable">
<a href="ol.interaction.DragBox.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.DragBox#get" class="">
<a href="ol.interaction.DragBox.html#get">get</a>
</li>
<li data-name="ol.interaction.DragBox#getActive" class="unstable">
<a href="ol.interaction.DragBox.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DragBox#getGeometry" class="">
<a href="ol.interaction.DragBox.html#getGeometry">getGeometry</a>
</li>
<li data-name="ol.interaction.DragBox#getKeys" class="">
<a href="ol.interaction.DragBox.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragBox#getMap" class="unstable">
<a href="ol.interaction.DragBox.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.DragBox#getProperties" class="">
<a href="ol.interaction.DragBox.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.DragBox#getRevision" class="unstable">
<a href="ol.interaction.DragBox.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragBox#on" class="">
<a href="ol.interaction.DragBox.html#on">on</a>
</li>
<li data-name="ol.interaction.DragBox#once" class="">
<a href="ol.interaction.DragBox.html#once">once</a>
</li>
<li data-name="ol.interaction.DragBox#set" class="">
<a href="ol.interaction.DragBox.html#set">set</a>
</li>
<li data-name="ol.interaction.DragBox#setActive" class="unstable">
<a href="ol.interaction.DragBox.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragBox#setProperties" class="">
<a href="ol.interaction.DragBox.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.DragBox#un" class="">
<a href="ol.interaction.DragBox.html#un">un</a>
</li>
<li data-name="ol.interaction.DragBox#unByKey" class="">
<a href="ol.interaction.DragBox.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.DragBox#unset" class="">
<a href="ol.interaction.DragBox.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.DragBoxEvent#event:boxdrag" class="unstable">
<a href="ol.DragBoxEvent.html#event:boxdrag">boxdrag</a>
</li>
<li data-name="ol.DragBoxEvent#event:boxend" class="">
<a href="ol.DragBoxEvent.html#event:boxend">boxend</a>
</li>
<li data-name="ol.DragBoxEvent#event:boxstart" class="">
<a href="ol.DragBoxEvent.html#event:boxstart">boxstart</a>
</li>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragPan">
<span class="title">
<a href="ol.interaction.DragPan.html">ol.interaction.DragPan</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragPan#changed" class="unstable">
<a href="ol.interaction.DragPan.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragPan#dispatchEvent" class="unstable">
<a href="ol.interaction.DragPan.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.DragPan#get" class="">
<a href="ol.interaction.DragPan.html#get">get</a>
</li>
<li data-name="ol.interaction.DragPan#getActive" class="unstable">
<a href="ol.interaction.DragPan.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DragPan#getKeys" class="">
<a href="ol.interaction.DragPan.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragPan#getMap" class="unstable">
<a href="ol.interaction.DragPan.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.DragPan#getProperties" class="">
<a href="ol.interaction.DragPan.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.DragPan#getRevision" class="unstable">
<a href="ol.interaction.DragPan.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragPan#on" class="">
<a href="ol.interaction.DragPan.html#on">on</a>
</li>
<li data-name="ol.interaction.DragPan#once" class="">
<a href="ol.interaction.DragPan.html#once">once</a>
</li>
<li data-name="ol.interaction.DragPan#set" class="">
<a href="ol.interaction.DragPan.html#set">set</a>
</li>
<li data-name="ol.interaction.DragPan#setActive" class="unstable">
<a href="ol.interaction.DragPan.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragPan#setProperties" class="">
<a href="ol.interaction.DragPan.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.DragPan#un" class="">
<a href="ol.interaction.DragPan.html#un">un</a>
</li>
<li data-name="ol.interaction.DragPan#unByKey" class="">
<a href="ol.interaction.DragPan.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.DragPan#unset" class="">
<a href="ol.interaction.DragPan.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragRotate">
<span class="title">
<a href="ol.interaction.DragRotate.html">ol.interaction.DragRotate</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragRotate#changed" class="unstable">
<a href="ol.interaction.DragRotate.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragRotate#dispatchEvent" class="unstable">
<a href="ol.interaction.DragRotate.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.DragRotate#get" class="">
<a href="ol.interaction.DragRotate.html#get">get</a>
</li>
<li data-name="ol.interaction.DragRotate#getActive" class="unstable">
<a href="ol.interaction.DragRotate.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DragRotate#getKeys" class="">
<a href="ol.interaction.DragRotate.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragRotate#getMap" class="unstable">
<a href="ol.interaction.DragRotate.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.DragRotate#getProperties" class="">
<a href="ol.interaction.DragRotate.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.DragRotate#getRevision" class="unstable">
<a href="ol.interaction.DragRotate.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragRotate#on" class="">
<a href="ol.interaction.DragRotate.html#on">on</a>
</li>
<li data-name="ol.interaction.DragRotate#once" class="">
<a href="ol.interaction.DragRotate.html#once">once</a>
</li>
<li data-name="ol.interaction.DragRotate#set" class="">
<a href="ol.interaction.DragRotate.html#set">set</a>
</li>
<li data-name="ol.interaction.DragRotate#setActive" class="unstable">
<a href="ol.interaction.DragRotate.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragRotate#setProperties" class="">
<a href="ol.interaction.DragRotate.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.DragRotate#un" class="">
<a href="ol.interaction.DragRotate.html#un">un</a>
</li>
<li data-name="ol.interaction.DragRotate#unByKey" class="">
<a href="ol.interaction.DragRotate.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.DragRotate#unset" class="">
<a href="ol.interaction.DragRotate.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragRotateAndZoom">
<span class="title">
<a href="ol.interaction.DragRotateAndZoom.html">ol.interaction.DragRotateAndZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragRotateAndZoom#changed" class="unstable">
<a href="ol.interaction.DragRotateAndZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#dispatchEvent" class="unstable">
<a href="ol.interaction.DragRotateAndZoom.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#get" class="">
<a href="ol.interaction.DragRotateAndZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#getActive" class="unstable">
<a href="ol.interaction.DragRotateAndZoom.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#getKeys" class="">
<a href="ol.interaction.DragRotateAndZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#getMap" class="unstable">
<a href="ol.interaction.DragRotateAndZoom.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#getProperties" class="">
<a href="ol.interaction.DragRotateAndZoom.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#getRevision" class="unstable">
<a href="ol.interaction.DragRotateAndZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#on" class="">
<a href="ol.interaction.DragRotateAndZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#once" class="">
<a href="ol.interaction.DragRotateAndZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#set" class="">
<a href="ol.interaction.DragRotateAndZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#setActive" class="unstable">
<a href="ol.interaction.DragRotateAndZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#setProperties" class="">
<a href="ol.interaction.DragRotateAndZoom.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#un" class="">
<a href="ol.interaction.DragRotateAndZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#unByKey" class="">
<a href="ol.interaction.DragRotateAndZoom.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#unset" class="">
<a href="ol.interaction.DragRotateAndZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragZoom">
<span class="title">
<a href="ol.interaction.DragZoom.html">ol.interaction.DragZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragZoom#changed" class="unstable">
<a href="ol.interaction.DragZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragZoom#dispatchEvent" class="unstable">
<a href="ol.interaction.DragZoom.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.DragZoom#get" class="">
<a href="ol.interaction.DragZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.DragZoom#getActive" class="unstable">
<a href="ol.interaction.DragZoom.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DragZoom#getGeometry" class="">
<a href="ol.interaction.DragZoom.html#getGeometry">getGeometry</a>
</li>
<li data-name="ol.interaction.DragZoom#getKeys" class="">
<a href="ol.interaction.DragZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragZoom#getMap" class="unstable">
<a href="ol.interaction.DragZoom.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.DragZoom#getProperties" class="">
<a href="ol.interaction.DragZoom.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.DragZoom#getRevision" class="unstable">
<a href="ol.interaction.DragZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragZoom#on" class="">
<a href="ol.interaction.DragZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.DragZoom#once" class="">
<a href="ol.interaction.DragZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.DragZoom#set" class="">
<a href="ol.interaction.DragZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.DragZoom#setActive" class="unstable">
<a href="ol.interaction.DragZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragZoom#setProperties" class="">
<a href="ol.interaction.DragZoom.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.DragZoom#un" class="">
<a href="ol.interaction.DragZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.DragZoom#unByKey" class="">
<a href="ol.interaction.DragZoom.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.DragZoom#unset" class="">
<a href="ol.interaction.DragZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.DragBoxEvent#event:boxdrag" class="unstable">
<a href="ol.DragBoxEvent.html#event:boxdrag">boxdrag</a>
</li>
<li data-name="ol.DragBoxEvent#event:boxend" class="">
<a href="ol.DragBoxEvent.html#event:boxend">boxend</a>
</li>
<li data-name="ol.DragBoxEvent#event:boxstart" class="">
<a href="ol.DragBoxEvent.html#event:boxstart">boxstart</a>
</li>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.Draw">
<span class="title">
<a href="ol.interaction.Draw.html">ol.interaction.Draw</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Draw.createRegularPolygon" class="unstable">
<a href="ol.interaction.Draw.html#.createRegularPolygon">createRegularPolygon</a>
</li>
<li data-name="ol.interaction.Draw.handleEvent" class="unstable">
<a href="ol.interaction.Draw.html#.handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.Draw#changed" class="unstable">
<a href="ol.interaction.Draw.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Draw#dispatchEvent" class="unstable">
<a href="ol.interaction.Draw.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.Draw#extend" class="unstable">
<a href="ol.interaction.Draw.html#extend">extend</a>
</li>
<li data-name="ol.interaction.Draw#finishDrawing" class="unstable">
<a href="ol.interaction.Draw.html#finishDrawing">finishDrawing</a>
</li>
<li data-name="ol.interaction.Draw#get" class="">
<a href="ol.interaction.Draw.html#get">get</a>
</li>
<li data-name="ol.interaction.Draw#getActive" class="unstable">
<a href="ol.interaction.Draw.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Draw#getKeys" class="">
<a href="ol.interaction.Draw.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Draw#getMap" class="unstable">
<a href="ol.interaction.Draw.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.Draw#getProperties" class="">
<a href="ol.interaction.Draw.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.Draw#getRevision" class="unstable">
<a href="ol.interaction.Draw.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Draw#on" class="">
<a href="ol.interaction.Draw.html#on">on</a>
</li>
<li data-name="ol.interaction.Draw#once" class="">
<a href="ol.interaction.Draw.html#once">once</a>
</li>
<li data-name="ol.interaction.Draw#removeLastPoint" class="unstable">
<a href="ol.interaction.Draw.html#removeLastPoint">removeLastPoint</a>
</li>
<li data-name="ol.interaction.Draw#set" class="">
<a href="ol.interaction.Draw.html#set">set</a>
</li>
<li data-name="ol.interaction.Draw#setActive" class="unstable">
<a href="ol.interaction.Draw.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Draw#setProperties" class="">
<a href="ol.interaction.Draw.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.Draw#un" class="">
<a href="ol.interaction.Draw.html#un">un</a>
</li>
<li data-name="ol.interaction.Draw#unByKey" class="">
<a href="ol.interaction.Draw.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.Draw#unset" class="">
<a href="ol.interaction.Draw.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.interaction.DrawEvent#event:drawend" class="">
<a href="ol.interaction.DrawEvent.html#event:drawend">drawend</a>
</li>
<li data-name="ol.interaction.DrawEvent#event:drawstart" class="">
<a href="ol.interaction.DrawEvent.html#event:drawstart">drawstart</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DrawEvent">
<span class="title">
<a href="ol.interaction.DrawEvent.html">ol.interaction.DrawEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.interaction.DrawEvent#feature"><a href="ol.interaction.DrawEvent.html#feature">feature</a></li>
<li data-name="ol.interaction.DrawEvent#target"><a href="ol.interaction.DrawEvent.html#target">target</a></li>
<li data-name="ol.interaction.DrawEvent#type"><a href="ol.interaction.DrawEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DrawEvent#preventDefault" class="">
<a href="ol.interaction.DrawEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.interaction.DrawEvent#stopPropagation" class="">
<a href="ol.interaction.DrawEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.interaction.Interaction">
<span class="title">
<a href="ol.interaction.Interaction.html">ol.interaction.Interaction</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Interaction#changed" class="unstable">
<a href="ol.interaction.Interaction.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Interaction#dispatchEvent" class="unstable">
<a href="ol.interaction.Interaction.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.Interaction#get" class="">
<a href="ol.interaction.Interaction.html#get">get</a>
</li>
<li data-name="ol.interaction.Interaction#getActive" class="unstable">
<a href="ol.interaction.Interaction.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Interaction#getKeys" class="">
<a href="ol.interaction.Interaction.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Interaction#getMap" class="unstable">
<a href="ol.interaction.Interaction.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.Interaction#getProperties" class="">
<a href="ol.interaction.Interaction.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.Interaction#getRevision" class="unstable">
<a href="ol.interaction.Interaction.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Interaction#on" class="">
<a href="ol.interaction.Interaction.html#on">on</a>
</li>
<li data-name="ol.interaction.Interaction#once" class="">
<a href="ol.interaction.Interaction.html#once">once</a>
</li>
<li data-name="ol.interaction.Interaction#set" class="">
<a href="ol.interaction.Interaction.html#set">set</a>
</li>
<li data-name="ol.interaction.Interaction#setActive" class="unstable">
<a href="ol.interaction.Interaction.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Interaction#setProperties" class="">
<a href="ol.interaction.Interaction.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.Interaction#un" class="">
<a href="ol.interaction.Interaction.html#un">un</a>
</li>
<li data-name="ol.interaction.Interaction#unByKey" class="">
<a href="ol.interaction.Interaction.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.Interaction#unset" class="">
<a href="ol.interaction.Interaction.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.KeyboardPan">
<span class="title">
<a href="ol.interaction.KeyboardPan.html">ol.interaction.KeyboardPan</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.KeyboardPan.handleEvent" class="unstable">
<a href="ol.interaction.KeyboardPan.html#.handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.KeyboardPan#changed" class="unstable">
<a href="ol.interaction.KeyboardPan.html#changed">changed</a>
</li>
<li data-name="ol.interaction.KeyboardPan#dispatchEvent" class="unstable">
<a href="ol.interaction.KeyboardPan.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.KeyboardPan#get" class="">
<a href="ol.interaction.KeyboardPan.html#get">get</a>
</li>
<li data-name="ol.interaction.KeyboardPan#getActive" class="unstable">
<a href="ol.interaction.KeyboardPan.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.KeyboardPan#getKeys" class="">
<a href="ol.interaction.KeyboardPan.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.KeyboardPan#getMap" class="unstable">
<a href="ol.interaction.KeyboardPan.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.KeyboardPan#getProperties" class="">
<a href="ol.interaction.KeyboardPan.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.KeyboardPan#getRevision" class="unstable">
<a href="ol.interaction.KeyboardPan.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.KeyboardPan#on" class="">
<a href="ol.interaction.KeyboardPan.html#on">on</a>
</li>
<li data-name="ol.interaction.KeyboardPan#once" class="">
<a href="ol.interaction.KeyboardPan.html#once">once</a>
</li>
<li data-name="ol.interaction.KeyboardPan#set" class="">
<a href="ol.interaction.KeyboardPan.html#set">set</a>
</li>
<li data-name="ol.interaction.KeyboardPan#setActive" class="unstable">
<a href="ol.interaction.KeyboardPan.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.KeyboardPan#setProperties" class="">
<a href="ol.interaction.KeyboardPan.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.KeyboardPan#un" class="">
<a href="ol.interaction.KeyboardPan.html#un">un</a>
</li>
<li data-name="ol.interaction.KeyboardPan#unByKey" class="">
<a href="ol.interaction.KeyboardPan.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.KeyboardPan#unset" class="">
<a href="ol.interaction.KeyboardPan.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.KeyboardZoom">
<span class="title">
<a href="ol.interaction.KeyboardZoom.html">ol.interaction.KeyboardZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.KeyboardZoom.handleEvent" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#.handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#changed" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#dispatchEvent" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#get" class="">
<a href="ol.interaction.KeyboardZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#getActive" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#getKeys" class="">
<a href="ol.interaction.KeyboardZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#getMap" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#getProperties" class="">
<a href="ol.interaction.KeyboardZoom.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#getRevision" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#on" class="">
<a href="ol.interaction.KeyboardZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#once" class="">
<a href="ol.interaction.KeyboardZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#set" class="">
<a href="ol.interaction.KeyboardZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#setActive" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#setProperties" class="">
<a href="ol.interaction.KeyboardZoom.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#un" class="">
<a href="ol.interaction.KeyboardZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#unByKey" class="">
<a href="ol.interaction.KeyboardZoom.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#unset" class="">
<a href="ol.interaction.KeyboardZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.Modify">
<span class="title">
<a href="ol.interaction.Modify.html">ol.interaction.Modify</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Modify.handleEvent" class="unstable">
<a href="ol.interaction.Modify.html#.handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.Modify#changed" class="unstable">
<a href="ol.interaction.Modify.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Modify#dispatchEvent" class="unstable">
<a href="ol.interaction.Modify.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.Modify#get" class="">
<a href="ol.interaction.Modify.html#get">get</a>
</li>
<li data-name="ol.interaction.Modify#getActive" class="unstable">
<a href="ol.interaction.Modify.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Modify#getKeys" class="">
<a href="ol.interaction.Modify.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Modify#getMap" class="unstable">
<a href="ol.interaction.Modify.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.Modify#getProperties" class="">
<a href="ol.interaction.Modify.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.Modify#getRevision" class="unstable">
<a href="ol.interaction.Modify.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Modify#on" class="">
<a href="ol.interaction.Modify.html#on">on</a>
</li>
<li data-name="ol.interaction.Modify#once" class="">
<a href="ol.interaction.Modify.html#once">once</a>
</li>
<li data-name="ol.interaction.Modify#set" class="">
<a href="ol.interaction.Modify.html#set">set</a>
</li>
<li data-name="ol.interaction.Modify#setActive" class="unstable">
<a href="ol.interaction.Modify.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Modify#setProperties" class="">
<a href="ol.interaction.Modify.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.Modify#un" class="">
<a href="ol.interaction.Modify.html#un">un</a>
</li>
<li data-name="ol.interaction.Modify#unByKey" class="">
<a href="ol.interaction.Modify.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.Modify#unset" class="">
<a href="ol.interaction.Modify.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.interaction.ModifyEvent#event:modifyend" class="unstable">
<a href="ol.interaction.ModifyEvent.html#event:modifyend">modifyend</a>
</li>
<li data-name="ol.interaction.ModifyEvent#event:modifystart" class="unstable">
<a href="ol.interaction.ModifyEvent.html#event:modifystart">modifystart</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.ModifyEvent">
<span class="title">
<a href="ol.interaction.ModifyEvent.html">ol.interaction.ModifyEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.interaction.ModifyEvent#features"><a href="ol.interaction.ModifyEvent.html#features">features</a></li>
<li data-name="ol.interaction.ModifyEvent#mapBrowserPointerEvent"><a href="ol.interaction.ModifyEvent.html#mapBrowserPointerEvent">mapBrowserPointerEvent</a></li>
<li data-name="ol.interaction.ModifyEvent#target"><a href="ol.interaction.ModifyEvent.html#target">target</a></li>
<li data-name="ol.interaction.ModifyEvent#type"><a href="ol.interaction.ModifyEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.ModifyEvent#preventDefault" class="">
<a href="ol.interaction.ModifyEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.interaction.ModifyEvent#stopPropagation" class="">
<a href="ol.interaction.ModifyEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.interaction.MouseWheelZoom">
<span class="title">
<a href="ol.interaction.MouseWheelZoom.html">ol.interaction.MouseWheelZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.MouseWheelZoom.handleEvent" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#.handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#changed" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#dispatchEvent" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#get" class="">
<a href="ol.interaction.MouseWheelZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#getActive" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#getKeys" class="">
<a href="ol.interaction.MouseWheelZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#getMap" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#getProperties" class="">
<a href="ol.interaction.MouseWheelZoom.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#getRevision" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#on" class="">
<a href="ol.interaction.MouseWheelZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#once" class="">
<a href="ol.interaction.MouseWheelZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#set" class="">
<a href="ol.interaction.MouseWheelZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#setActive" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#setMouseAnchor" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#setMouseAnchor">setMouseAnchor</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#setProperties" class="">
<a href="ol.interaction.MouseWheelZoom.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#un" class="">
<a href="ol.interaction.MouseWheelZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#unByKey" class="">
<a href="ol.interaction.MouseWheelZoom.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#unset" class="">
<a href="ol.interaction.MouseWheelZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.PinchRotate">
<span class="title">
<a href="ol.interaction.PinchRotate.html">ol.interaction.PinchRotate</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.PinchRotate#changed" class="unstable">
<a href="ol.interaction.PinchRotate.html#changed">changed</a>
</li>
<li data-name="ol.interaction.PinchRotate#dispatchEvent" class="unstable">
<a href="ol.interaction.PinchRotate.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.PinchRotate#get" class="">
<a href="ol.interaction.PinchRotate.html#get">get</a>
</li>
<li data-name="ol.interaction.PinchRotate#getActive" class="unstable">
<a href="ol.interaction.PinchRotate.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.PinchRotate#getKeys" class="">
<a href="ol.interaction.PinchRotate.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.PinchRotate#getMap" class="unstable">
<a href="ol.interaction.PinchRotate.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.PinchRotate#getProperties" class="">
<a href="ol.interaction.PinchRotate.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.PinchRotate#getRevision" class="unstable">
<a href="ol.interaction.PinchRotate.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.PinchRotate#on" class="">
<a href="ol.interaction.PinchRotate.html#on">on</a>
</li>
<li data-name="ol.interaction.PinchRotate#once" class="">
<a href="ol.interaction.PinchRotate.html#once">once</a>
</li>
<li data-name="ol.interaction.PinchRotate#set" class="">
<a href="ol.interaction.PinchRotate.html#set">set</a>
</li>
<li data-name="ol.interaction.PinchRotate#setActive" class="unstable">
<a href="ol.interaction.PinchRotate.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.PinchRotate#setProperties" class="">
<a href="ol.interaction.PinchRotate.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.PinchRotate#un" class="">
<a href="ol.interaction.PinchRotate.html#un">un</a>
</li>
<li data-name="ol.interaction.PinchRotate#unByKey" class="">
<a href="ol.interaction.PinchRotate.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.PinchRotate#unset" class="">
<a href="ol.interaction.PinchRotate.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.PinchZoom">
<span class="title">
<a href="ol.interaction.PinchZoom.html">ol.interaction.PinchZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.PinchZoom#changed" class="unstable">
<a href="ol.interaction.PinchZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.PinchZoom#dispatchEvent" class="unstable">
<a href="ol.interaction.PinchZoom.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.PinchZoom#get" class="">
<a href="ol.interaction.PinchZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.PinchZoom#getActive" class="unstable">
<a href="ol.interaction.PinchZoom.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.PinchZoom#getKeys" class="">
<a href="ol.interaction.PinchZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.PinchZoom#getMap" class="unstable">
<a href="ol.interaction.PinchZoom.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.PinchZoom#getProperties" class="">
<a href="ol.interaction.PinchZoom.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.PinchZoom#getRevision" class="unstable">
<a href="ol.interaction.PinchZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.PinchZoom#on" class="">
<a href="ol.interaction.PinchZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.PinchZoom#once" class="">
<a href="ol.interaction.PinchZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.PinchZoom#set" class="">
<a href="ol.interaction.PinchZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.PinchZoom#setActive" class="unstable">
<a href="ol.interaction.PinchZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.PinchZoom#setProperties" class="">
<a href="ol.interaction.PinchZoom.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.PinchZoom#un" class="">
<a href="ol.interaction.PinchZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.PinchZoom#unByKey" class="">
<a href="ol.interaction.PinchZoom.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.PinchZoom#unset" class="">
<a href="ol.interaction.PinchZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.Pointer">
<span class="title">
<a href="ol.interaction.Pointer.html">ol.interaction.Pointer</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Pointer.handleEvent" class="unstable">
<a href="ol.interaction.Pointer.html#.handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.Pointer#changed" class="unstable">
<a href="ol.interaction.Pointer.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Pointer#dispatchEvent" class="unstable">
<a href="ol.interaction.Pointer.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.Pointer#get" class="">
<a href="ol.interaction.Pointer.html#get">get</a>
</li>
<li data-name="ol.interaction.Pointer#getActive" class="unstable">
<a href="ol.interaction.Pointer.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Pointer#getKeys" class="">
<a href="ol.interaction.Pointer.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Pointer#getMap" class="unstable">
<a href="ol.interaction.Pointer.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.Pointer#getProperties" class="">
<a href="ol.interaction.Pointer.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.Pointer#getRevision" class="unstable">
<a href="ol.interaction.Pointer.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Pointer#on" class="">
<a href="ol.interaction.Pointer.html#on">on</a>
</li>
<li data-name="ol.interaction.Pointer#once" class="">
<a href="ol.interaction.Pointer.html#once">once</a>
</li>
<li data-name="ol.interaction.Pointer#set" class="">
<a href="ol.interaction.Pointer.html#set">set</a>
</li>
<li data-name="ol.interaction.Pointer#setActive" class="unstable">
<a href="ol.interaction.Pointer.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Pointer#setProperties" class="">
<a href="ol.interaction.Pointer.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.Pointer#un" class="">
<a href="ol.interaction.Pointer.html#un">un</a>
</li>
<li data-name="ol.interaction.Pointer#unByKey" class="">
<a href="ol.interaction.Pointer.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.Pointer#unset" class="">
<a href="ol.interaction.Pointer.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.Select">
<span class="title">
<a href="ol.interaction.Select.html">ol.interaction.Select</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Select.handleEvent" class="unstable">
<a href="ol.interaction.Select.html#.handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.Select#changed" class="unstable">
<a href="ol.interaction.Select.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Select#dispatchEvent" class="unstable">
<a href="ol.interaction.Select.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.Select#get" class="">
<a href="ol.interaction.Select.html#get">get</a>
</li>
<li data-name="ol.interaction.Select#getActive" class="unstable">
<a href="ol.interaction.Select.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Select#getFeatures" class="">
<a href="ol.interaction.Select.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.interaction.Select#getKeys" class="">
<a href="ol.interaction.Select.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Select#getLayer" class="unstable">
<a href="ol.interaction.Select.html#getLayer">getLayer</a>
</li>
<li data-name="ol.interaction.Select#getMap" class="unstable">
<a href="ol.interaction.Select.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.Select#getProperties" class="">
<a href="ol.interaction.Select.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.Select#getRevision" class="unstable">
<a href="ol.interaction.Select.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Select#on" class="">
<a href="ol.interaction.Select.html#on">on</a>
</li>
<li data-name="ol.interaction.Select#once" class="">
<a href="ol.interaction.Select.html#once">once</a>
</li>
<li data-name="ol.interaction.Select#set" class="">
<a href="ol.interaction.Select.html#set">set</a>
</li>
<li data-name="ol.interaction.Select#setActive" class="unstable">
<a href="ol.interaction.Select.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Select#setMap" class="">
<a href="ol.interaction.Select.html#setMap">setMap</a>
</li>
<li data-name="ol.interaction.Select#setProperties" class="">
<a href="ol.interaction.Select.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.Select#un" class="">
<a href="ol.interaction.Select.html#un">un</a>
</li>
<li data-name="ol.interaction.Select#unByKey" class="">
<a href="ol.interaction.Select.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.Select#unset" class="">
<a href="ol.interaction.Select.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.interaction.SelectEvent#event:select" class="unstable">
<a href="ol.interaction.SelectEvent.html#event:select">select</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.SelectEvent">
<span class="title">
<a href="ol.interaction.SelectEvent.html">ol.interaction.SelectEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.interaction.SelectEvent#deselected"><a href="ol.interaction.SelectEvent.html#deselected">deselected</a></li>
<li data-name="ol.interaction.SelectEvent#mapBrowserEvent"><a href="ol.interaction.SelectEvent.html#mapBrowserEvent">mapBrowserEvent</a></li>
<li data-name="ol.interaction.SelectEvent#selected"><a href="ol.interaction.SelectEvent.html#selected">selected</a></li>
<li data-name="ol.interaction.SelectEvent#target"><a href="ol.interaction.SelectEvent.html#target">target</a></li>
<li data-name="ol.interaction.SelectEvent#type"><a href="ol.interaction.SelectEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.SelectEvent#preventDefault" class="">
<a href="ol.interaction.SelectEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.interaction.SelectEvent#stopPropagation" class="">
<a href="ol.interaction.SelectEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.interaction.Snap">
<span class="title">
<a href="ol.interaction.Snap.html">ol.interaction.Snap</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Snap#addFeature" class="unstable">
<a href="ol.interaction.Snap.html#addFeature">addFeature</a>
</li>
<li data-name="ol.interaction.Snap#changed" class="unstable">
<a href="ol.interaction.Snap.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Snap#dispatchEvent" class="unstable">
<a href="ol.interaction.Snap.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.Snap#get" class="">
<a href="ol.interaction.Snap.html#get">get</a>
</li>
<li data-name="ol.interaction.Snap#getActive" class="unstable">
<a href="ol.interaction.Snap.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Snap#getKeys" class="">
<a href="ol.interaction.Snap.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Snap#getMap" class="unstable">
<a href="ol.interaction.Snap.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.Snap#getProperties" class="">
<a href="ol.interaction.Snap.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.Snap#getRevision" class="unstable">
<a href="ol.interaction.Snap.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Snap#on" class="">
<a href="ol.interaction.Snap.html#on">on</a>
</li>
<li data-name="ol.interaction.Snap#once" class="">
<a href="ol.interaction.Snap.html#once">once</a>
</li>
<li data-name="ol.interaction.Snap#removeFeature" class="unstable">
<a href="ol.interaction.Snap.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.interaction.Snap#set" class="">
<a href="ol.interaction.Snap.html#set">set</a>
</li>
<li data-name="ol.interaction.Snap#setActive" class="unstable">
<a href="ol.interaction.Snap.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Snap#setProperties" class="">
<a href="ol.interaction.Snap.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.Snap#un" class="">
<a href="ol.interaction.Snap.html#un">un</a>
</li>
<li data-name="ol.interaction.Snap#unByKey" class="">
<a href="ol.interaction.Snap.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.Snap#unset" class="">
<a href="ol.interaction.Snap.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.Translate">
<span class="title">
<a href="ol.interaction.Translate.html">ol.interaction.Translate</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Translate#changed" class="unstable">
<a href="ol.interaction.Translate.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Translate#dispatchEvent" class="unstable">
<a href="ol.interaction.Translate.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.Translate#get" class="">
<a href="ol.interaction.Translate.html#get">get</a>
</li>
<li data-name="ol.interaction.Translate#getActive" class="unstable">
<a href="ol.interaction.Translate.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Translate#getKeys" class="">
<a href="ol.interaction.Translate.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Translate#getMap" class="unstable">
<a href="ol.interaction.Translate.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.Translate#getProperties" class="">
<a href="ol.interaction.Translate.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.Translate#getRevision" class="unstable">
<a href="ol.interaction.Translate.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Translate#on" class="">
<a href="ol.interaction.Translate.html#on">on</a>
</li>
<li data-name="ol.interaction.Translate#once" class="">
<a href="ol.interaction.Translate.html#once">once</a>
</li>
<li data-name="ol.interaction.Translate#set" class="">
<a href="ol.interaction.Translate.html#set">set</a>
</li>
<li data-name="ol.interaction.Translate#setActive" class="unstable">
<a href="ol.interaction.Translate.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Translate#setProperties" class="">
<a href="ol.interaction.Translate.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.Translate#un" class="">
<a href="ol.interaction.Translate.html#un">un</a>
</li>
<li data-name="ol.interaction.Translate#unByKey" class="">
<a href="ol.interaction.Translate.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.Translate#unset" class="">
<a href="ol.interaction.Translate.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.interaction.TranslateEvent#event:translateend" class="unstable">
<a href="ol.interaction.TranslateEvent.html#event:translateend">translateend</a>
</li>
<li data-name="ol.interaction.TranslateEvent#event:translatestart" class="unstable">
<a href="ol.interaction.TranslateEvent.html#event:translatestart">translatestart</a>
</li>
<li data-name="ol.interaction.TranslateEvent#event:translating" class="unstable">
<a href="ol.interaction.TranslateEvent.html#event:translating">translating</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.TranslateEvent">
<span class="title">
<a href="ol.interaction.TranslateEvent.html">ol.interaction.TranslateEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.interaction.TranslateEvent#coordinate"><a href="ol.interaction.TranslateEvent.html#coordinate">coordinate</a></li>
<li data-name="ol.interaction.TranslateEvent#features"><a href="ol.interaction.TranslateEvent.html#features">features</a></li>
<li data-name="ol.interaction.TranslateEvent#target"><a href="ol.interaction.TranslateEvent.html#target">target</a></li>
<li data-name="ol.interaction.TranslateEvent#type"><a href="ol.interaction.TranslateEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.TranslateEvent#preventDefault" class="">
<a href="ol.interaction.TranslateEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.interaction.TranslateEvent#stopPropagation" class="">
<a href="ol.interaction.TranslateEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.layer">
<span class="title">
<a href="ol.layer.html">ol.layer</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.layer.Base">
<span class="title">
<a href="ol.layer.Base.html">ol.layer.Base</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Base#changed" class="unstable">
<a href="ol.layer.Base.html#changed">changed</a>
</li>
<li data-name="ol.layer.Base#dispatchEvent" class="unstable">
<a href="ol.layer.Base.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.layer.Base#get" class="">
<a href="ol.layer.Base.html#get">get</a>
</li>
<li data-name="ol.layer.Base#getExtent" class="">
<a href="ol.layer.Base.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Base#getKeys" class="">
<a href="ol.layer.Base.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Base#getMaxResolution" class="">
<a href="ol.layer.Base.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Base#getMinResolution" class="">
<a href="ol.layer.Base.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Base#getOpacity" class="">
<a href="ol.layer.Base.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Base#getProperties" class="">
<a href="ol.layer.Base.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Base#getRevision" class="unstable">
<a href="ol.layer.Base.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Base#getVisible" class="">
<a href="ol.layer.Base.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Base#getZIndex" class="unstable">
<a href="ol.layer.Base.html#getZIndex">getZIndex</a>
</li>
<li data-name="ol.layer.Base#on" class="">
<a href="ol.layer.Base.html#on">on</a>
</li>
<li data-name="ol.layer.Base#once" class="">
<a href="ol.layer.Base.html#once">once</a>
</li>
<li data-name="ol.layer.Base#set" class="">
<a href="ol.layer.Base.html#set">set</a>
</li>
<li data-name="ol.layer.Base#setExtent" class="">
<a href="ol.layer.Base.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Base#setMaxResolution" class="">
<a href="ol.layer.Base.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Base#setMinResolution" class="">
<a href="ol.layer.Base.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Base#setOpacity" class="">
<a href="ol.layer.Base.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Base#setProperties" class="">
<a href="ol.layer.Base.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Base#setVisible" class="">
<a href="ol.layer.Base.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Base#setZIndex" class="unstable">
<a href="ol.layer.Base.html#setZIndex">setZIndex</a>
</li>
<li data-name="ol.layer.Base#un" class="">
<a href="ol.layer.Base.html#un">un</a>
</li>
<li data-name="ol.layer.Base#unByKey" class="">
<a href="ol.layer.Base.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Base#unset" class="">
<a href="ol.layer.Base.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:change:zIndex" class="unstable">
change:zIndex
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Group">
<span class="title">
<a href="ol.layer.Group.html">ol.layer.Group</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Group#changed" class="unstable">
<a href="ol.layer.Group.html#changed">changed</a>
</li>
<li data-name="ol.layer.Group#dispatchEvent" class="unstable">
<a href="ol.layer.Group.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.layer.Group#get" class="">
<a href="ol.layer.Group.html#get">get</a>
</li>
<li data-name="ol.layer.Group#getExtent" class="">
<a href="ol.layer.Group.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Group#getKeys" class="">
<a href="ol.layer.Group.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Group#getLayers" class="">
<a href="ol.layer.Group.html#getLayers">getLayers</a>
</li>
<li data-name="ol.layer.Group#getMaxResolution" class="">
<a href="ol.layer.Group.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Group#getMinResolution" class="">
<a href="ol.layer.Group.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Group#getOpacity" class="">
<a href="ol.layer.Group.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Group#getProperties" class="">
<a href="ol.layer.Group.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Group#getRevision" class="unstable">
<a href="ol.layer.Group.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Group#getVisible" class="">
<a href="ol.layer.Group.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Group#getZIndex" class="unstable">
<a href="ol.layer.Group.html#getZIndex">getZIndex</a>
</li>
<li data-name="ol.layer.Group#on" class="">
<a href="ol.layer.Group.html#on">on</a>
</li>
<li data-name="ol.layer.Group#once" class="">
<a href="ol.layer.Group.html#once">once</a>
</li>
<li data-name="ol.layer.Group#set" class="">
<a href="ol.layer.Group.html#set">set</a>
</li>
<li data-name="ol.layer.Group#setExtent" class="">
<a href="ol.layer.Group.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Group#setLayers" class="">
<a href="ol.layer.Group.html#setLayers">setLayers</a>
</li>
<li data-name="ol.layer.Group#setMaxResolution" class="">
<a href="ol.layer.Group.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Group#setMinResolution" class="">
<a href="ol.layer.Group.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Group#setOpacity" class="">
<a href="ol.layer.Group.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Group#setProperties" class="">
<a href="ol.layer.Group.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Group#setVisible" class="">
<a href="ol.layer.Group.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Group#setZIndex" class="unstable">
<a href="ol.layer.Group.html#setZIndex">setZIndex</a>
</li>
<li data-name="ol.layer.Group#un" class="">
<a href="ol.layer.Group.html#un">un</a>
</li>
<li data-name="ol.layer.Group#unByKey" class="">
<a href="ol.layer.Group.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Group#unset" class="">
<a href="ol.layer.Group.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:layers" class="unstable">
change:layers
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:change:zIndex" class="unstable">
change:zIndex
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Heatmap">
<span class="title">
<a href="ol.layer.Heatmap.html">ol.layer.Heatmap</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Heatmap#changed" class="unstable">
<a href="ol.layer.Heatmap.html#changed">changed</a>
</li>
<li data-name="ol.layer.Heatmap#dispatchEvent" class="unstable">
<a href="ol.layer.Heatmap.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.layer.Heatmap#get" class="">
<a href="ol.layer.Heatmap.html#get">get</a>
</li>
<li data-name="ol.layer.Heatmap#getBlur" class="unstable">
<a href="ol.layer.Heatmap.html#getBlur">getBlur</a>
</li>
<li data-name="ol.layer.Heatmap#getExtent" class="">
<a href="ol.layer.Heatmap.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Heatmap#getGradient" class="unstable">
<a href="ol.layer.Heatmap.html#getGradient">getGradient</a>
</li>
<li data-name="ol.layer.Heatmap#getKeys" class="">
<a href="ol.layer.Heatmap.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Heatmap#getMaxResolution" class="">
<a href="ol.layer.Heatmap.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Heatmap#getMinResolution" class="">
<a href="ol.layer.Heatmap.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Heatmap#getOpacity" class="">
<a href="ol.layer.Heatmap.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Heatmap#getProperties" class="">
<a href="ol.layer.Heatmap.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Heatmap#getRadius" class="unstable">
<a href="ol.layer.Heatmap.html#getRadius">getRadius</a>
</li>
<li data-name="ol.layer.Heatmap#getRevision" class="unstable">
<a href="ol.layer.Heatmap.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Heatmap#getSource" class="">
<a href="ol.layer.Heatmap.html#getSource">getSource</a>
</li>
<li data-name="ol.layer.Heatmap#getStyle" class="">
<a href="ol.layer.Heatmap.html#getStyle">getStyle</a>
</li>
<li data-name="ol.layer.Heatmap#getStyleFunction" class="">
<a href="ol.layer.Heatmap.html#getStyleFunction">getStyleFunction</a>
</li>
<li data-name="ol.layer.Heatmap#getVisible" class="">
<a href="ol.layer.Heatmap.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Heatmap#getZIndex" class="unstable">
<a href="ol.layer.Heatmap.html#getZIndex">getZIndex</a>
</li>
<li data-name="ol.layer.Heatmap#on" class="">
<a href="ol.layer.Heatmap.html#on">on</a>
</li>
<li data-name="ol.layer.Heatmap#once" class="">
<a href="ol.layer.Heatmap.html#once">once</a>
</li>
<li data-name="ol.layer.Heatmap#set" class="">
<a href="ol.layer.Heatmap.html#set">set</a>
</li>
<li data-name="ol.layer.Heatmap#setBlur" class="unstable">
<a href="ol.layer.Heatmap.html#setBlur">setBlur</a>
</li>
<li data-name="ol.layer.Heatmap#setExtent" class="">
<a href="ol.layer.Heatmap.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Heatmap#setGradient" class="unstable">
<a href="ol.layer.Heatmap.html#setGradient">setGradient</a>
</li>
<li data-name="ol.layer.Heatmap#setMap" class="unstable">
<a href="ol.layer.Heatmap.html#setMap">setMap</a>
</li>
<li data-name="ol.layer.Heatmap#setMaxResolution" class="">
<a href="ol.layer.Heatmap.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Heatmap#setMinResolution" class="">
<a href="ol.layer.Heatmap.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Heatmap#setOpacity" class="">
<a href="ol.layer.Heatmap.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Heatmap#setProperties" class="">
<a href="ol.layer.Heatmap.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Heatmap#setRadius" class="unstable">
<a href="ol.layer.Heatmap.html#setRadius">setRadius</a>
</li>
<li data-name="ol.layer.Heatmap#setSource" class="">
<a href="ol.layer.Heatmap.html#setSource">setSource</a>
</li>
<li data-name="ol.layer.Heatmap#setStyle" class="">
<a href="ol.layer.Heatmap.html#setStyle">setStyle</a>
</li>
<li data-name="ol.layer.Heatmap#setVisible" class="">
<a href="ol.layer.Heatmap.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Heatmap#setZIndex" class="unstable">
<a href="ol.layer.Heatmap.html#setZIndex">setZIndex</a>
</li>
<li data-name="ol.layer.Heatmap#un" class="">
<a href="ol.layer.Heatmap.html#un">un</a>
</li>
<li data-name="ol.layer.Heatmap#unByKey" class="">
<a href="ol.layer.Heatmap.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Heatmap#unset" class="">
<a href="ol.layer.Heatmap.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:blur" class="unstable">
change:blur
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:gradient" class="unstable">
change:gradient
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:radius" class="unstable">
change:radius
</li>
<li data-name="ol.ObjectEvent#event:change:source" class="unstable">
change:source
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:change:zIndex" class="unstable">
change:zIndex
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.render.Event#event:render" class="unstable">
<a href="ol.render.Event.html#event:render">render</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Image">
<span class="title">
<a href="ol.layer.Image.html">ol.layer.Image</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Image#changed" class="unstable">
<a href="ol.layer.Image.html#changed">changed</a>
</li>
<li data-name="ol.layer.Image#dispatchEvent" class="unstable">
<a href="ol.layer.Image.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.layer.Image#get" class="">
<a href="ol.layer.Image.html#get">get</a>
</li>
<li data-name="ol.layer.Image#getExtent" class="">
<a href="ol.layer.Image.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Image#getKeys" class="">
<a href="ol.layer.Image.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Image#getMaxResolution" class="">
<a href="ol.layer.Image.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Image#getMinResolution" class="">
<a href="ol.layer.Image.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Image#getOpacity" class="">
<a href="ol.layer.Image.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Image#getProperties" class="">
<a href="ol.layer.Image.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Image#getRevision" class="unstable">
<a href="ol.layer.Image.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Image#getSource" class="">
<a href="ol.layer.Image.html#getSource">getSource</a>
</li>
<li data-name="ol.layer.Image#getVisible" class="">
<a href="ol.layer.Image.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Image#getZIndex" class="unstable">
<a href="ol.layer.Image.html#getZIndex">getZIndex</a>
</li>
<li data-name="ol.layer.Image#on" class="">
<a href="ol.layer.Image.html#on">on</a>
</li>
<li data-name="ol.layer.Image#once" class="">
<a href="ol.layer.Image.html#once">once</a>
</li>
<li data-name="ol.layer.Image#set" class="">
<a href="ol.layer.Image.html#set">set</a>
</li>
<li data-name="ol.layer.Image#setExtent" class="">
<a href="ol.layer.Image.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Image#setMap" class="unstable">
<a href="ol.layer.Image.html#setMap">setMap</a>
</li>
<li data-name="ol.layer.Image#setMaxResolution" class="">
<a href="ol.layer.Image.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Image#setMinResolution" class="">
<a href="ol.layer.Image.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Image#setOpacity" class="">
<a href="ol.layer.Image.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Image#setProperties" class="">
<a href="ol.layer.Image.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Image#setSource" class="">
<a href="ol.layer.Image.html#setSource">setSource</a>
</li>
<li data-name="ol.layer.Image#setVisible" class="">
<a href="ol.layer.Image.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Image#setZIndex" class="unstable">
<a href="ol.layer.Image.html#setZIndex">setZIndex</a>
</li>
<li data-name="ol.layer.Image#un" class="">
<a href="ol.layer.Image.html#un">un</a>
</li>
<li data-name="ol.layer.Image#unByKey" class="">
<a href="ol.layer.Image.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Image#unset" class="">
<a href="ol.layer.Image.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:source" class="unstable">
change:source
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:change:zIndex" class="unstable">
change:zIndex
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.render.Event#event:render" class="unstable">
<a href="ol.render.Event.html#event:render">render</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Layer">
<span class="title">
<a href="ol.layer.Layer.html">ol.layer.Layer</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Layer#changed" class="unstable">
<a href="ol.layer.Layer.html#changed">changed</a>
</li>
<li data-name="ol.layer.Layer#dispatchEvent" class="unstable">
<a href="ol.layer.Layer.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.layer.Layer#get" class="">
<a href="ol.layer.Layer.html#get">get</a>
</li>
<li data-name="ol.layer.Layer#getExtent" class="">
<a href="ol.layer.Layer.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Layer#getKeys" class="">
<a href="ol.layer.Layer.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Layer#getMaxResolution" class="">
<a href="ol.layer.Layer.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Layer#getMinResolution" class="">
<a href="ol.layer.Layer.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Layer#getOpacity" class="">
<a href="ol.layer.Layer.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Layer#getProperties" class="">
<a href="ol.layer.Layer.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Layer#getRevision" class="unstable">
<a href="ol.layer.Layer.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Layer#getSource" class="">
<a href="ol.layer.Layer.html#getSource">getSource</a>
</li>
<li data-name="ol.layer.Layer#getVisible" class="">
<a href="ol.layer.Layer.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Layer#getZIndex" class="unstable">
<a href="ol.layer.Layer.html#getZIndex">getZIndex</a>
</li>
<li data-name="ol.layer.Layer#on" class="">
<a href="ol.layer.Layer.html#on">on</a>
</li>
<li data-name="ol.layer.Layer#once" class="">
<a href="ol.layer.Layer.html#once">once</a>
</li>
<li data-name="ol.layer.Layer#set" class="">
<a href="ol.layer.Layer.html#set">set</a>
</li>
<li data-name="ol.layer.Layer#setExtent" class="">
<a href="ol.layer.Layer.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Layer#setMap" class="unstable">
<a href="ol.layer.Layer.html#setMap">setMap</a>
</li>
<li data-name="ol.layer.Layer#setMaxResolution" class="">
<a href="ol.layer.Layer.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Layer#setMinResolution" class="">
<a href="ol.layer.Layer.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Layer#setOpacity" class="">
<a href="ol.layer.Layer.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Layer#setProperties" class="">
<a href="ol.layer.Layer.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Layer#setSource" class="">
<a href="ol.layer.Layer.html#setSource">setSource</a>
</li>
<li data-name="ol.layer.Layer#setVisible" class="">
<a href="ol.layer.Layer.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Layer#setZIndex" class="unstable">
<a href="ol.layer.Layer.html#setZIndex">setZIndex</a>
</li>
<li data-name="ol.layer.Layer#un" class="">
<a href="ol.layer.Layer.html#un">un</a>
</li>
<li data-name="ol.layer.Layer#unByKey" class="">
<a href="ol.layer.Layer.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Layer#unset" class="">
<a href="ol.layer.Layer.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:source" class="unstable">
change:source
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:change:zIndex" class="unstable">
change:zIndex
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.render.Event#event:render" class="unstable">
<a href="ol.render.Event.html#event:render">render</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Tile">
<span class="title">
<a href="ol.layer.Tile.html">ol.layer.Tile</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Tile#changed" class="unstable">
<a href="ol.layer.Tile.html#changed">changed</a>
</li>
<li data-name="ol.layer.Tile#dispatchEvent" class="unstable">
<a href="ol.layer.Tile.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.layer.Tile#get" class="">
<a href="ol.layer.Tile.html#get">get</a>
</li>
<li data-name="ol.layer.Tile#getExtent" class="">
<a href="ol.layer.Tile.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Tile#getKeys" class="">
<a href="ol.layer.Tile.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Tile#getMaxResolution" class="">
<a href="ol.layer.Tile.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Tile#getMinResolution" class="">
<a href="ol.layer.Tile.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Tile#getOpacity" class="">
<a href="ol.layer.Tile.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Tile#getPreload" class="unstable">
<a href="ol.layer.Tile.html#getPreload">getPreload</a>
</li>
<li data-name="ol.layer.Tile#getProperties" class="">
<a href="ol.layer.Tile.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Tile#getRevision" class="unstable">
<a href="ol.layer.Tile.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Tile#getSource" class="">
<a href="ol.layer.Tile.html#getSource">getSource</a>
</li>
<li data-name="ol.layer.Tile#getUseInterimTilesOnError" class="unstable">
<a href="ol.layer.Tile.html#getUseInterimTilesOnError">getUseInterimTilesOnError</a>
</li>
<li data-name="ol.layer.Tile#getVisible" class="">
<a href="ol.layer.Tile.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Tile#getZIndex" class="unstable">
<a href="ol.layer.Tile.html#getZIndex">getZIndex</a>
</li>
<li data-name="ol.layer.Tile#on" class="">
<a href="ol.layer.Tile.html#on">on</a>
</li>
<li data-name="ol.layer.Tile#once" class="">
<a href="ol.layer.Tile.html#once">once</a>
</li>
<li data-name="ol.layer.Tile#set" class="">
<a href="ol.layer.Tile.html#set">set</a>
</li>
<li data-name="ol.layer.Tile#setExtent" class="">
<a href="ol.layer.Tile.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Tile#setMap" class="unstable">
<a href="ol.layer.Tile.html#setMap">setMap</a>
</li>
<li data-name="ol.layer.Tile#setMaxResolution" class="">
<a href="ol.layer.Tile.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Tile#setMinResolution" class="">
<a href="ol.layer.Tile.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Tile#setOpacity" class="">
<a href="ol.layer.Tile.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Tile#setPreload" class="unstable">
<a href="ol.layer.Tile.html#setPreload">setPreload</a>
</li>
<li data-name="ol.layer.Tile#setProperties" class="">
<a href="ol.layer.Tile.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Tile#setSource" class="">
<a href="ol.layer.Tile.html#setSource">setSource</a>
</li>
<li data-name="ol.layer.Tile#setUseInterimTilesOnError" class="unstable">
<a href="ol.layer.Tile.html#setUseInterimTilesOnError">setUseInterimTilesOnError</a>
</li>
<li data-name="ol.layer.Tile#setVisible" class="">
<a href="ol.layer.Tile.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Tile#setZIndex" class="unstable">
<a href="ol.layer.Tile.html#setZIndex">setZIndex</a>
</li>
<li data-name="ol.layer.Tile#un" class="">
<a href="ol.layer.Tile.html#un">un</a>
</li>
<li data-name="ol.layer.Tile#unByKey" class="">
<a href="ol.layer.Tile.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Tile#unset" class="">
<a href="ol.layer.Tile.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:preload" class="unstable">
change:preload
</li>
<li data-name="ol.ObjectEvent#event:change:source" class="unstable">
change:source
</li>
<li data-name="ol.ObjectEvent#event:change:useInterimTilesOnError" class="unstable">
change:useInterimTilesOnError
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:change:zIndex" class="unstable">
change:zIndex
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.render.Event#event:render" class="unstable">
<a href="ol.render.Event.html#event:render">render</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Vector">
<span class="title">
<a href="ol.layer.Vector.html">ol.layer.Vector</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Vector#changed" class="unstable">
<a href="ol.layer.Vector.html#changed">changed</a>
</li>
<li data-name="ol.layer.Vector#dispatchEvent" class="unstable">
<a href="ol.layer.Vector.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.layer.Vector#get" class="">
<a href="ol.layer.Vector.html#get">get</a>
</li>
<li data-name="ol.layer.Vector#getExtent" class="">
<a href="ol.layer.Vector.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Vector#getKeys" class="">
<a href="ol.layer.Vector.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Vector#getMaxResolution" class="">
<a href="ol.layer.Vector.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Vector#getMinResolution" class="">
<a href="ol.layer.Vector.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Vector#getOpacity" class="">
<a href="ol.layer.Vector.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Vector#getProperties" class="">
<a href="ol.layer.Vector.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Vector#getRevision" class="unstable">
<a href="ol.layer.Vector.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Vector#getSource" class="">
<a href="ol.layer.Vector.html#getSource">getSource</a>
</li>
<li data-name="ol.layer.Vector#getStyle" class="">
<a href="ol.layer.Vector.html#getStyle">getStyle</a>
</li>
<li data-name="ol.layer.Vector#getStyleFunction" class="">
<a href="ol.layer.Vector.html#getStyleFunction">getStyleFunction</a>
</li>
<li data-name="ol.layer.Vector#getVisible" class="">
<a href="ol.layer.Vector.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Vector#getZIndex" class="unstable">
<a href="ol.layer.Vector.html#getZIndex">getZIndex</a>
</li>
<li data-name="ol.layer.Vector#on" class="">
<a href="ol.layer.Vector.html#on">on</a>
</li>
<li data-name="ol.layer.Vector#once" class="">
<a href="ol.layer.Vector.html#once">once</a>
</li>
<li data-name="ol.layer.Vector#set" class="">
<a href="ol.layer.Vector.html#set">set</a>
</li>
<li data-name="ol.layer.Vector#setExtent" class="">
<a href="ol.layer.Vector.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Vector#setMap" class="unstable">
<a href="ol.layer.Vector.html#setMap">setMap</a>
</li>
<li data-name="ol.layer.Vector#setMaxResolution" class="">
<a href="ol.layer.Vector.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Vector#setMinResolution" class="">
<a href="ol.layer.Vector.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Vector#setOpacity" class="">
<a href="ol.layer.Vector.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Vector#setProperties" class="">
<a href="ol.layer.Vector.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Vector#setSource" class="">
<a href="ol.layer.Vector.html#setSource">setSource</a>
</li>
<li data-name="ol.layer.Vector#setStyle" class="">
<a href="ol.layer.Vector.html#setStyle">setStyle</a>
</li>
<li data-name="ol.layer.Vector#setVisible" class="">
<a href="ol.layer.Vector.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Vector#setZIndex" class="unstable">
<a href="ol.layer.Vector.html#setZIndex">setZIndex</a>
</li>
<li data-name="ol.layer.Vector#un" class="">
<a href="ol.layer.Vector.html#un">un</a>
</li>
<li data-name="ol.layer.Vector#unByKey" class="">
<a href="ol.layer.Vector.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Vector#unset" class="">
<a href="ol.layer.Vector.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:source" class="unstable">
change:source
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:change:zIndex" class="unstable">
change:zIndex
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.render.Event#event:render" class="unstable">
<a href="ol.render.Event.html#event:render">render</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.VectorTile">
<span class="title">
<a href="ol.layer.VectorTile.html">ol.layer.VectorTile</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.VectorTile#changed" class="unstable">
<a href="ol.layer.VectorTile.html#changed">changed</a>
</li>
<li data-name="ol.layer.VectorTile#dispatchEvent" class="unstable">
<a href="ol.layer.VectorTile.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.layer.VectorTile#get" class="">
<a href="ol.layer.VectorTile.html#get">get</a>
</li>
<li data-name="ol.layer.VectorTile#getExtent" class="">
<a href="ol.layer.VectorTile.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.VectorTile#getKeys" class="">
<a href="ol.layer.VectorTile.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.VectorTile#getMaxResolution" class="">
<a href="ol.layer.VectorTile.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.VectorTile#getMinResolution" class="">
<a href="ol.layer.VectorTile.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.VectorTile#getOpacity" class="">
<a href="ol.layer.VectorTile.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.VectorTile#getPreload" class="unstable">
<a href="ol.layer.VectorTile.html#getPreload">getPreload</a>
</li>
<li data-name="ol.layer.VectorTile#getProperties" class="">
<a href="ol.layer.VectorTile.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.VectorTile#getRevision" class="unstable">
<a href="ol.layer.VectorTile.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.VectorTile#getSource" class="">
<a href="ol.layer.VectorTile.html#getSource">getSource</a>
</li>
<li data-name="ol.layer.VectorTile#getStyle" class="">
<a href="ol.layer.VectorTile.html#getStyle">getStyle</a>
</li>
<li data-name="ol.layer.VectorTile#getStyleFunction" class="">
<a href="ol.layer.VectorTile.html#getStyleFunction">getStyleFunction</a>
</li>
<li data-name="ol.layer.VectorTile#getUseInterimTilesOnError" class="unstable">
<a href="ol.layer.VectorTile.html#getUseInterimTilesOnError">getUseInterimTilesOnError</a>
</li>
<li data-name="ol.layer.VectorTile#getVisible" class="">
<a href="ol.layer.VectorTile.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.VectorTile#getZIndex" class="unstable">
<a href="ol.layer.VectorTile.html#getZIndex">getZIndex</a>
</li>
<li data-name="ol.layer.VectorTile#on" class="">
<a href="ol.layer.VectorTile.html#on">on</a>
</li>
<li data-name="ol.layer.VectorTile#once" class="">
<a href="ol.layer.VectorTile.html#once">once</a>
</li>
<li data-name="ol.layer.VectorTile#set" class="">
<a href="ol.layer.VectorTile.html#set">set</a>
</li>
<li data-name="ol.layer.VectorTile#setExtent" class="">
<a href="ol.layer.VectorTile.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.VectorTile#setMap" class="unstable">
<a href="ol.layer.VectorTile.html#setMap">setMap</a>
</li>
<li data-name="ol.layer.VectorTile#setMaxResolution" class="">
<a href="ol.layer.VectorTile.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.VectorTile#setMinResolution" class="">
<a href="ol.layer.VectorTile.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.VectorTile#setOpacity" class="">
<a href="ol.layer.VectorTile.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.VectorTile#setPreload" class="unstable">
<a href="ol.layer.VectorTile.html#setPreload">setPreload</a>
</li>
<li data-name="ol.layer.VectorTile#setProperties" class="">
<a href="ol.layer.VectorTile.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.VectorTile#setSource" class="">
<a href="ol.layer.VectorTile.html#setSource">setSource</a>
</li>
<li data-name="ol.layer.VectorTile#setStyle" class="">
<a href="ol.layer.VectorTile.html#setStyle">setStyle</a>
</li>
<li data-name="ol.layer.VectorTile#setUseInterimTilesOnError" class="unstable">
<a href="ol.layer.VectorTile.html#setUseInterimTilesOnError">setUseInterimTilesOnError</a>
</li>
<li data-name="ol.layer.VectorTile#setVisible" class="">
<a href="ol.layer.VectorTile.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.VectorTile#setZIndex" class="unstable">
<a href="ol.layer.VectorTile.html#setZIndex">setZIndex</a>
</li>
<li data-name="ol.layer.VectorTile#un" class="">
<a href="ol.layer.VectorTile.html#un">un</a>
</li>
<li data-name="ol.layer.VectorTile#unByKey" class="">
<a href="ol.layer.VectorTile.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.VectorTile#unset" class="">
<a href="ol.layer.VectorTile.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:preload" class="unstable">
change:preload
</li>
<li data-name="ol.ObjectEvent#event:change:source" class="unstable">
change:source
</li>
<li data-name="ol.ObjectEvent#event:change:useInterimTilesOnError" class="unstable">
change:useInterimTilesOnError
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:change:zIndex" class="unstable">
change:zIndex
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.render.Event#event:render" class="unstable">
<a href="ol.render.Event.html#event:render">render</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.loadingstrategy">
<span class="title">
<a href="ol.loadingstrategy.html">ol.loadingstrategy</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.loadingstrategy.all" class="unstable">
<a href="ol.loadingstrategy.html#.all">all</a>
</li>
<li data-name="ol.loadingstrategy.bbox" class="unstable">
<a href="ol.loadingstrategy.html#.bbox">bbox</a>
</li>
<li data-name="ol.loadingstrategy.tile" class="unstable">
<a href="ol.loadingstrategy.html#.tile">tile</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.proj">
<span class="title">
<a href="ol.proj.html">ol.proj</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.proj.METERS_PER_UNIT"><a href="ol.proj.html#.METERS_PER_UNIT">METERS_PER_UNIT</a></li>
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.proj.ProjectionLike" class="">
<a href="ol.proj.html#.ProjectionLike">ProjectionLike</a>
</li>
<li data-name="ol.proj.Units" class="">
<a href="ol.proj.html#.Units">Units</a>
</li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.proj.addCoordinateTransforms" class="">
<a href="ol.proj.html#.addCoordinateTransforms">addCoordinateTransforms</a>
</li>
<li data-name="ol.proj.addEquivalentProjections" class="unstable">
<a href="ol.proj.html#.addEquivalentProjections">addEquivalentProjections</a>
</li>
<li data-name="ol.proj.addProjection" class="">
<a href="ol.proj.html#.addProjection">addProjection</a>
</li>
<li data-name="ol.proj.equivalent" class="unstable">
<a href="ol.proj.html#.equivalent">equivalent</a>
</li>
<li data-name="ol.proj.fromLonLat" class="">
<a href="ol.proj.html#.fromLonLat">fromLonLat</a>
</li>
<li data-name="ol.proj.get" class="">
<a href="ol.proj.html#.get">get</a>
</li>
<li data-name="ol.proj.getTransform" class="">
<a href="ol.proj.html#.getTransform">getTransform</a>
</li>
<li data-name="ol.proj.setProj4" class="unstable">
<a href="ol.proj.html#.setProj4">setProj4</a>
</li>
<li data-name="ol.proj.toLonLat" class="">
<a href="ol.proj.html#.toLonLat">toLonLat</a>
</li>
<li data-name="ol.proj.transform" class="">
<a href="ol.proj.html#.transform">transform</a>
</li>
<li data-name="ol.proj.transformExtent" class="">
<a href="ol.proj.html#.transformExtent">transformExtent</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.proj.Projection">
<span class="title">
<a href="ol.proj.Projection.html">ol.proj.Projection</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.proj.Projection#getCode" class="">
<a href="ol.proj.Projection.html#getCode">getCode</a>
</li>
<li data-name="ol.proj.Projection#getExtent" class="">
<a href="ol.proj.Projection.html#getExtent">getExtent</a>
</li>
<li data-name="ol.proj.Projection#getMetersPerUnit" class="">
<a href="ol.proj.Projection.html#getMetersPerUnit">getMetersPerUnit</a>
</li>
<li data-name="ol.proj.Projection#getPointResolution" class="unstable">
<a href="ol.proj.Projection.html#getPointResolution">getPointResolution</a>
</li>
<li data-name="ol.proj.Projection#getUnits" class="">
<a href="ol.proj.Projection.html#getUnits">getUnits</a>
</li>
<li data-name="ol.proj.Projection#getWorldExtent" class="unstable">
<a href="ol.proj.Projection.html#getWorldExtent">getWorldExtent</a>
</li>
<li data-name="ol.proj.Projection#isGlobal" class="">
<a href="ol.proj.Projection.html#isGlobal">isGlobal</a>
</li>
<li data-name="ol.proj.Projection#setExtent" class="">
<a href="ol.proj.Projection.html#setExtent">setExtent</a>
</li>
<li data-name="ol.proj.Projection#setGetPointResolution" class="unstable">
<a href="ol.proj.Projection.html#setGetPointResolution">setGetPointResolution</a>
</li>
<li data-name="ol.proj.Projection#setGlobal" class="">
<a href="ol.proj.Projection.html#setGlobal">setGlobal</a>
</li>
<li data-name="ol.proj.Projection#setWorldExtent" class="unstable">
<a href="ol.proj.Projection.html#setWorldExtent">setWorldExtent</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.raster">
<span class="title">
<a href="ol.raster.html">ol.raster</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.raster.Operation" class="unstable">
<a href="ol.raster.html#.Operation">Operation</a>
</li>
<li data-name="ol.raster.OperationType" class="unstable">
<a href="ol.raster.html#.OperationType">OperationType</a>
</li>
<li data-name="ol.raster.Pixel" class="unstable">
<a href="ol.raster.html#.Pixel">Pixel</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render">
<span class="title">
<a href="ol.render.html">ol.render</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.render.toContext" class="unstable">
<a href="ol.render.html#.toContext">toContext</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render.Event">
<span class="title">
<a href="ol.render.Event.html">ol.render.Event</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.render.Event#context"><a href="ol.render.Event.html#context">context</a></li>
<li data-name="ol.render.Event#frameState"><a href="ol.render.Event.html#frameState">frameState</a></li>
<li data-name="ol.render.Event#glContext"><a href="ol.render.Event.html#glContext">glContext</a></li>
<li data-name="ol.render.Event#target"><a href="ol.render.Event.html#target">target</a></li>
<li data-name="ol.render.Event#type"><a href="ol.render.Event.html#type">type</a></li>
<li data-name="ol.render.Event#vectorContext"><a href="ol.render.Event.html#vectorContext">vectorContext</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.render.Event#preventDefault" class="">
<a href="ol.render.Event.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.render.Event#stopPropagation" class="">
<a href="ol.render.Event.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render.Feature">
<span class="title">
<a href="ol.render.Feature.html">ol.render.Feature</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.render.Feature#get" class="unstable">
<a href="ol.render.Feature.html#get">get</a>
</li>
<li data-name="ol.render.Feature#getExtent" class="unstable">
<a href="ol.render.Feature.html#getExtent">getExtent</a>
</li>
<li data-name="ol.render.Feature#getGeometry" class="unstable">
<a href="ol.render.Feature.html#getGeometry">getGeometry</a>
</li>
<li data-name="ol.render.Feature#getProperties" class="unstable">
<a href="ol.render.Feature.html#getProperties">getProperties</a>
</li>
<li data-name="ol.render.Feature#getType" class="unstable">
<a href="ol.render.Feature.html#getType">getType</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render.VectorContext">
<span class="title">
<a href="ol.render.VectorContext.html">ol.render.VectorContext</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render.canvas">
<span class="title">
<a href="ol.render.canvas.html">ol.render.canvas</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render.canvas.Immediate">
<span class="title">
<a href="ol.render.canvas.Immediate.html">ol.render.canvas.Immediate</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.render.canvas.Immediate#drawCircle" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawCircle">drawCircle</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawFeature" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawFeature">drawFeature</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawGeometry" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawGeometry">drawGeometry</a>
</li>
<li data-name="ol.render.canvas.Immediate#setStyle" class="unstable">
<a href="ol.render.canvas.Immediate.html#setStyle">setStyle</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render.webgl.Immediate">
<span class="title">
<a href="ol.render.webgl.Immediate.html">ol.render.webgl.Immediate</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.render.webgl.Immediate#drawFeature"><a href="ol.render.webgl.Immediate.html#drawFeature">drawFeature</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.render.webgl.Immediate#drawGeometry" class="unstable">
<a href="ol.render.webgl.Immediate.html#drawGeometry">drawGeometry</a>
</li>
<li data-name="ol.render.webgl.Immediate#setStyle" class="unstable">
<a href="ol.render.webgl.Immediate.html#setStyle">setStyle</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.source">
<span class="title">
<a href="ol.source.html">ol.source</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.source.State" class="unstable">
<a href="ol.source.html#.State">State</a>
</li>
<li data-name="ol.source.WMTSRequestEncoding" class="unstable">
<a href="ol.source.html#.WMTSRequestEncoding">WMTSRequestEncoding</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.source.BingMaps">
<span class="title">
<a href="ol.source.BingMaps.html">ol.source.BingMaps</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.source.BingMaps.TOS_ATTRIBUTION"><a href="ol.source.BingMaps.html#.TOS_ATTRIBUTION">TOS_ATTRIBUTION</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.BingMaps#changed" class="unstable">
<a href="ol.source.BingMaps.html#changed">changed</a>
</li>
<li data-name="ol.source.BingMaps#dispatchEvent" class="unstable">
<a href="ol.source.BingMaps.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.BingMaps#get" class="">
<a href="ol.source.BingMaps.html#get">get</a>
</li>
<li data-name="ol.source.BingMaps#getAttributions" class="">
<a href="ol.source.BingMaps.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.BingMaps#getKeys" class="">
<a href="ol.source.BingMaps.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.BingMaps#getLogo" class="">
<a href="ol.source.BingMaps.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.BingMaps#getProjection" class="unstable">
<a href="ol.source.BingMaps.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.BingMaps#getProperties" class="">
<a href="ol.source.BingMaps.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.BingMaps#getRevision" class="unstable">
<a href="ol.source.BingMaps.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.BingMaps#getState" class="unstable">
<a href="ol.source.BingMaps.html#getState">getState</a>
</li>
<li data-name="ol.source.BingMaps#getTileGrid" class="">
<a href="ol.source.BingMaps.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.BingMaps#getTileLoadFunction" class="unstable">
<a href="ol.source.BingMaps.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.BingMaps#getTileUrlFunction" class="unstable">
<a href="ol.source.BingMaps.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.BingMaps#getUrls" class="unstable">
<a href="ol.source.BingMaps.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.BingMaps#on" class="">
<a href="ol.source.BingMaps.html#on">on</a>
</li>
<li data-name="ol.source.BingMaps#once" class="">
<a href="ol.source.BingMaps.html#once">once</a>
</li>
<li data-name="ol.source.BingMaps#refresh" class="unstable">
<a href="ol.source.BingMaps.html#refresh">refresh</a>
</li>
<li data-name="ol.source.BingMaps#set" class="">
<a href="ol.source.BingMaps.html#set">set</a>
</li>
<li data-name="ol.source.BingMaps#setAttributions" class="unstable">
<a href="ol.source.BingMaps.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.BingMaps#setProperties" class="">
<a href="ol.source.BingMaps.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.BingMaps#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.BingMaps.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.BingMaps#setTileGridForProjection" class="unstable">
<a href="ol.source.BingMaps.html#setTileGridForProjection">setTileGridForProjection</a>
</li>
<li data-name="ol.source.BingMaps#setTileLoadFunction" class="unstable">
<a href="ol.source.BingMaps.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.BingMaps#setTileUrlFunction" class="unstable">
<a href="ol.source.BingMaps.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.BingMaps#setUrl" class="">
<a href="ol.source.BingMaps.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.BingMaps#setUrls" class="">
<a href="ol.source.BingMaps.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.BingMaps#un" class="">
<a href="ol.source.BingMaps.html#un">un</a>
</li>
<li data-name="ol.source.BingMaps#unByKey" class="">
<a href="ol.source.BingMaps.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.BingMaps#unset" class="">
<a href="ol.source.BingMaps.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.CartoDB">
<span class="title">
<a href="ol.source.CartoDB.html">ol.source.CartoDB</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.CartoDB#changed" class="unstable">
<a href="ol.source.CartoDB.html#changed">changed</a>
</li>
<li data-name="ol.source.CartoDB#dispatchEvent" class="unstable">
<a href="ol.source.CartoDB.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.CartoDB#get" class="">
<a href="ol.source.CartoDB.html#get">get</a>
</li>
<li data-name="ol.source.CartoDB#getAttributions" class="">
<a href="ol.source.CartoDB.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.CartoDB#getConfig" class="unstable">
<a href="ol.source.CartoDB.html#getConfig">getConfig</a>
</li>
<li data-name="ol.source.CartoDB#getKeys" class="">
<a href="ol.source.CartoDB.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.CartoDB#getLogo" class="">
<a href="ol.source.CartoDB.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.CartoDB#getProjection" class="unstable">
<a href="ol.source.CartoDB.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.CartoDB#getProperties" class="">
<a href="ol.source.CartoDB.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.CartoDB#getRevision" class="unstable">
<a href="ol.source.CartoDB.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.CartoDB#getState" class="unstable">
<a href="ol.source.CartoDB.html#getState">getState</a>
</li>
<li data-name="ol.source.CartoDB#getTileGrid" class="">
<a href="ol.source.CartoDB.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.CartoDB#getTileLoadFunction" class="unstable">
<a href="ol.source.CartoDB.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.CartoDB#getTileUrlFunction" class="unstable">
<a href="ol.source.CartoDB.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.CartoDB#getUrls" class="unstable">
<a href="ol.source.CartoDB.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.CartoDB#on" class="">
<a href="ol.source.CartoDB.html#on">on</a>
</li>
<li data-name="ol.source.CartoDB#once" class="">
<a href="ol.source.CartoDB.html#once">once</a>
</li>
<li data-name="ol.source.CartoDB#refresh" class="unstable">
<a href="ol.source.CartoDB.html#refresh">refresh</a>
</li>
<li data-name="ol.source.CartoDB#set" class="">
<a href="ol.source.CartoDB.html#set">set</a>
</li>
<li data-name="ol.source.CartoDB#setAttributions" class="unstable">
<a href="ol.source.CartoDB.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.CartoDB#setProperties" class="">
<a href="ol.source.CartoDB.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.CartoDB#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.CartoDB.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.CartoDB#setTileGridForProjection" class="unstable">
<a href="ol.source.CartoDB.html#setTileGridForProjection">setTileGridForProjection</a>
</li>
<li data-name="ol.source.CartoDB#setTileLoadFunction" class="unstable">
<a href="ol.source.CartoDB.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.CartoDB#setTileUrlFunction" class="unstable">
<a href="ol.source.CartoDB.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.CartoDB#setUrl" class="">
<a href="ol.source.CartoDB.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.CartoDB#setUrls" class="">
<a href="ol.source.CartoDB.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.CartoDB#un" class="">
<a href="ol.source.CartoDB.html#un">un</a>
</li>
<li data-name="ol.source.CartoDB#unByKey" class="">
<a href="ol.source.CartoDB.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.CartoDB#unset" class="">
<a href="ol.source.CartoDB.html#unset">unset</a>
</li>
<li data-name="ol.source.CartoDB#updateConfig" class="unstable">
<a href="ol.source.CartoDB.html#updateConfig">updateConfig</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Cluster">
<span class="title">
<a href="ol.source.Cluster.html">ol.source.Cluster</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Cluster#addFeature" class="">
<a href="ol.source.Cluster.html#addFeature">addFeature</a>
</li>
<li data-name="ol.source.Cluster#addFeatures" class="">
<a href="ol.source.Cluster.html#addFeatures">addFeatures</a>
</li>
<li data-name="ol.source.Cluster#changed" class="unstable">
<a href="ol.source.Cluster.html#changed">changed</a>
</li>
<li data-name="ol.source.Cluster#clear" class="">
<a href="ol.source.Cluster.html#clear">clear</a>
</li>
<li data-name="ol.source.Cluster#dispatchEvent" class="unstable">
<a href="ol.source.Cluster.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.Cluster#forEachFeature" class="">
<a href="ol.source.Cluster.html#forEachFeature">forEachFeature</a>
</li>
<li data-name="ol.source.Cluster#forEachFeatureInExtent" class="unstable">
<a href="ol.source.Cluster.html#forEachFeatureInExtent">forEachFeatureInExtent</a>
</li>
<li data-name="ol.source.Cluster#forEachFeatureIntersectingExtent" class="unstable">
<a href="ol.source.Cluster.html#forEachFeatureIntersectingExtent">forEachFeatureIntersectingExtent</a>
</li>
<li data-name="ol.source.Cluster#get" class="">
<a href="ol.source.Cluster.html#get">get</a>
</li>
<li data-name="ol.source.Cluster#getAttributions" class="">
<a href="ol.source.Cluster.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Cluster#getClosestFeatureToCoordinate" class="">
<a href="ol.source.Cluster.html#getClosestFeatureToCoordinate">getClosestFeatureToCoordinate</a>
</li>
<li data-name="ol.source.Cluster#getExtent" class="">
<a href="ol.source.Cluster.html#getExtent">getExtent</a>
</li>
<li data-name="ol.source.Cluster#getFeatureById" class="">
<a href="ol.source.Cluster.html#getFeatureById">getFeatureById</a>
</li>
<li data-name="ol.source.Cluster#getFeatures" class="">
<a href="ol.source.Cluster.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.source.Cluster#getFeaturesAtCoordinate" class="">
<a href="ol.source.Cluster.html#getFeaturesAtCoordinate">getFeaturesAtCoordinate</a>
</li>
<li data-name="ol.source.Cluster#getFeaturesCollection" class="unstable">
<a href="ol.source.Cluster.html#getFeaturesCollection">getFeaturesCollection</a>
</li>
<li data-name="ol.source.Cluster#getFeaturesInExtent" class="unstable">
<a href="ol.source.Cluster.html#getFeaturesInExtent">getFeaturesInExtent</a>
</li>
<li data-name="ol.source.Cluster#getFormat" class="unstable">
<a href="ol.source.Cluster.html#getFormat">getFormat</a>
</li>
<li data-name="ol.source.Cluster#getKeys" class="">
<a href="ol.source.Cluster.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.Cluster#getLogo" class="">
<a href="ol.source.Cluster.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Cluster#getProjection" class="unstable">
<a href="ol.source.Cluster.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Cluster#getProperties" class="">
<a href="ol.source.Cluster.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.Cluster#getRevision" class="unstable">
<a href="ol.source.Cluster.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Cluster#getSource" class="unstable">
<a href="ol.source.Cluster.html#getSource">getSource</a>
</li>
<li data-name="ol.source.Cluster#getState" class="unstable">
<a href="ol.source.Cluster.html#getState">getState</a>
</li>
<li data-name="ol.source.Cluster#getUrl" class="unstable">
<a href="ol.source.Cluster.html#getUrl">getUrl</a>
</li>
<li data-name="ol.source.Cluster#on" class="">
<a href="ol.source.Cluster.html#on">on</a>
</li>
<li data-name="ol.source.Cluster#once" class="">
<a href="ol.source.Cluster.html#once">once</a>
</li>
<li data-name="ol.source.Cluster#refresh" class="unstable">
<a href="ol.source.Cluster.html#refresh">refresh</a>
</li>
<li data-name="ol.source.Cluster#removeFeature" class="">
<a href="ol.source.Cluster.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.source.Cluster#set" class="">
<a href="ol.source.Cluster.html#set">set</a>
</li>
<li data-name="ol.source.Cluster#setAttributions" class="unstable">
<a href="ol.source.Cluster.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.Cluster#setProperties" class="">
<a href="ol.source.Cluster.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Cluster#un" class="">
<a href="ol.source.Cluster.html#un">un</a>
</li>
<li data-name="ol.source.Cluster#unByKey" class="">
<a href="ol.source.Cluster.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.Cluster#unset" class="">
<a href="ol.source.Cluster.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.source.VectorEvent#event:addfeature" class="">
<a href="ol.source.VectorEvent.html#event:addfeature">addfeature</a>
</li>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.source.VectorEvent#event:changefeature" class="unstable">
<a href="ol.source.VectorEvent.html#event:changefeature">changefeature</a>
</li>
<li data-name="ol.source.VectorEvent#event:clear" class="unstable">
<a href="ol.source.VectorEvent.html#event:clear">clear</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.VectorEvent#event:removefeature" class="">
<a href="ol.source.VectorEvent.html#event:removefeature">removefeature</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Image">
<span class="title">
<a href="ol.source.Image.html">ol.source.Image</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Image#changed" class="unstable">
<a href="ol.source.Image.html#changed">changed</a>
</li>
<li data-name="ol.source.Image#dispatchEvent" class="unstable">
<a href="ol.source.Image.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.Image#get" class="">
<a href="ol.source.Image.html#get">get</a>
</li>
<li data-name="ol.source.Image#getAttributions" class="">
<a href="ol.source.Image.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Image#getKeys" class="">
<a href="ol.source.Image.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.Image#getLogo" class="">
<a href="ol.source.Image.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Image#getProjection" class="unstable">
<a href="ol.source.Image.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Image#getProperties" class="">
<a href="ol.source.Image.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.Image#getRevision" class="unstable">
<a href="ol.source.Image.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Image#getState" class="unstable">
<a href="ol.source.Image.html#getState">getState</a>
</li>
<li data-name="ol.source.Image#on" class="">
<a href="ol.source.Image.html#on">on</a>
</li>
<li data-name="ol.source.Image#once" class="">
<a href="ol.source.Image.html#once">once</a>
</li>
<li data-name="ol.source.Image#refresh" class="unstable">
<a href="ol.source.Image.html#refresh">refresh</a>
</li>
<li data-name="ol.source.Image#set" class="">
<a href="ol.source.Image.html#set">set</a>
</li>
<li data-name="ol.source.Image#setAttributions" class="unstable">
<a href="ol.source.Image.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.Image#setProperties" class="">
<a href="ol.source.Image.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Image#un" class="">
<a href="ol.source.Image.html#un">un</a>
</li>
<li data-name="ol.source.Image#unByKey" class="">
<a href="ol.source.Image.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.Image#unset" class="">
<a href="ol.source.Image.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.ImageCanvas">
<span class="title">
<a href="ol.source.ImageCanvas.html">ol.source.ImageCanvas</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ImageCanvas#changed" class="unstable">
<a href="ol.source.ImageCanvas.html#changed">changed</a>
</li>
<li data-name="ol.source.ImageCanvas#dispatchEvent" class="unstable">
<a href="ol.source.ImageCanvas.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.ImageCanvas#get" class="">
<a href="ol.source.ImageCanvas.html#get">get</a>
</li>
<li data-name="ol.source.ImageCanvas#getAttributions" class="">
<a href="ol.source.ImageCanvas.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.ImageCanvas#getKeys" class="">
<a href="ol.source.ImageCanvas.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.ImageCanvas#getLogo" class="">
<a href="ol.source.ImageCanvas.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.ImageCanvas#getProjection" class="unstable">
<a href="ol.source.ImageCanvas.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.ImageCanvas#getProperties" class="">
<a href="ol.source.ImageCanvas.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.ImageCanvas#getRevision" class="unstable">
<a href="ol.source.ImageCanvas.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.ImageCanvas#getState" class="unstable">
<a href="ol.source.ImageCanvas.html#getState">getState</a>
</li>
<li data-name="ol.source.ImageCanvas#on" class="">
<a href="ol.source.ImageCanvas.html#on">on</a>
</li>
<li data-name="ol.source.ImageCanvas#once" class="">
<a href="ol.source.ImageCanvas.html#once">once</a>
</li>
<li data-name="ol.source.ImageCanvas#refresh" class="unstable">
<a href="ol.source.ImageCanvas.html#refresh">refresh</a>
</li>
<li data-name="ol.source.ImageCanvas#set" class="">
<a href="ol.source.ImageCanvas.html#set">set</a>
</li>
<li data-name="ol.source.ImageCanvas#setAttributions" class="unstable">
<a href="ol.source.ImageCanvas.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.ImageCanvas#setProperties" class="">
<a href="ol.source.ImageCanvas.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.ImageCanvas#un" class="">
<a href="ol.source.ImageCanvas.html#un">un</a>
</li>
<li data-name="ol.source.ImageCanvas#unByKey" class="">
<a href="ol.source.ImageCanvas.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.ImageCanvas#unset" class="">
<a href="ol.source.ImageCanvas.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.ImageEvent">
<span class="title">
<a href="ol.source.ImageEvent.html">ol.source.ImageEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.source.ImageEvent#image"><a href="ol.source.ImageEvent.html#image">image</a></li>
<li data-name="ol.source.ImageEvent#target"><a href="ol.source.ImageEvent.html#target">target</a></li>
<li data-name="ol.source.ImageEvent#type"><a href="ol.source.ImageEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ImageEvent#preventDefault" class="">
<a href="ol.source.ImageEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.source.ImageEvent#stopPropagation" class="">
<a href="ol.source.ImageEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.source.ImageMapGuide">
<span class="title">
<a href="ol.source.ImageMapGuide.html">ol.source.ImageMapGuide</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ImageMapGuide#changed" class="unstable">
<a href="ol.source.ImageMapGuide.html#changed">changed</a>
</li>
<li data-name="ol.source.ImageMapGuide#dispatchEvent" class="unstable">
<a href="ol.source.ImageMapGuide.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.ImageMapGuide#get" class="">
<a href="ol.source.ImageMapGuide.html#get">get</a>
</li>
<li data-name="ol.source.ImageMapGuide#getAttributions" class="">
<a href="ol.source.ImageMapGuide.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.ImageMapGuide#getImageLoadFunction" class="unstable">
<a href="ol.source.ImageMapGuide.html#getImageLoadFunction">getImageLoadFunction</a>
</li>
<li data-name="ol.source.ImageMapGuide#getKeys" class="">
<a href="ol.source.ImageMapGuide.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.ImageMapGuide#getLogo" class="">
<a href="ol.source.ImageMapGuide.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.ImageMapGuide#getParams" class="">
<a href="ol.source.ImageMapGuide.html#getParams">getParams</a>
</li>
<li data-name="ol.source.ImageMapGuide#getProjection" class="unstable">
<a href="ol.source.ImageMapGuide.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.ImageMapGuide#getProperties" class="">
<a href="ol.source.ImageMapGuide.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.ImageMapGuide#getRevision" class="unstable">
<a href="ol.source.ImageMapGuide.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.ImageMapGuide#getState" class="unstable">
<a href="ol.source.ImageMapGuide.html#getState">getState</a>
</li>
<li data-name="ol.source.ImageMapGuide#on" class="">
<a href="ol.source.ImageMapGuide.html#on">on</a>
</li>
<li data-name="ol.source.ImageMapGuide#once" class="">
<a href="ol.source.ImageMapGuide.html#once">once</a>
</li>
<li data-name="ol.source.ImageMapGuide#refresh" class="unstable">
<a href="ol.source.ImageMapGuide.html#refresh">refresh</a>
</li>
<li data-name="ol.source.ImageMapGuide#set" class="">
<a href="ol.source.ImageMapGuide.html#set">set</a>
</li>
<li data-name="ol.source.ImageMapGuide#setAttributions" class="unstable">
<a href="ol.source.ImageMapGuide.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.ImageMapGuide#setImageLoadFunction" class="unstable">
<a href="ol.source.ImageMapGuide.html#setImageLoadFunction">setImageLoadFunction</a>
</li>
<li data-name="ol.source.ImageMapGuide#setProperties" class="">
<a href="ol.source.ImageMapGuide.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.ImageMapGuide#un" class="">
<a href="ol.source.ImageMapGuide.html#un">un</a>
</li>
<li data-name="ol.source.ImageMapGuide#unByKey" class="">
<a href="ol.source.ImageMapGuide.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.ImageMapGuide#unset" class="">
<a href="ol.source.ImageMapGuide.html#unset">unset</a>
</li>
<li data-name="ol.source.ImageMapGuide#updateParams" class="">
<a href="ol.source.ImageMapGuide.html#updateParams">updateParams</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.source.ImageEvent#event:imageloadend" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloadend">imageloadend</a>
</li>
<li data-name="ol.source.ImageEvent#event:imageloaderror" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloaderror">imageloaderror</a>
</li>
<li data-name="ol.source.ImageEvent#event:imageloadstart" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloadstart">imageloadstart</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.ImageStatic">
<span class="title">
<a href="ol.source.ImageStatic.html">ol.source.ImageStatic</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ImageStatic#changed" class="unstable">
<a href="ol.source.ImageStatic.html#changed">changed</a>
</li>
<li data-name="ol.source.ImageStatic#dispatchEvent" class="unstable">
<a href="ol.source.ImageStatic.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.ImageStatic#get" class="">
<a href="ol.source.ImageStatic.html#get">get</a>
</li>
<li data-name="ol.source.ImageStatic#getAttributions" class="">
<a href="ol.source.ImageStatic.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.ImageStatic#getKeys" class="">
<a href="ol.source.ImageStatic.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.ImageStatic#getLogo" class="">
<a href="ol.source.ImageStatic.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.ImageStatic#getProjection" class="unstable">
<a href="ol.source.ImageStatic.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.ImageStatic#getProperties" class="">
<a href="ol.source.ImageStatic.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.ImageStatic#getRevision" class="unstable">
<a href="ol.source.ImageStatic.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.ImageStatic#getState" class="unstable">
<a href="ol.source.ImageStatic.html#getState">getState</a>
</li>
<li data-name="ol.source.ImageStatic#on" class="">
<a href="ol.source.ImageStatic.html#on">on</a>
</li>
<li data-name="ol.source.ImageStatic#once" class="">
<a href="ol.source.ImageStatic.html#once">once</a>
</li>
<li data-name="ol.source.ImageStatic#refresh" class="unstable">
<a href="ol.source.ImageStatic.html#refresh">refresh</a>
</li>
<li data-name="ol.source.ImageStatic#set" class="">
<a href="ol.source.ImageStatic.html#set">set</a>
</li>
<li data-name="ol.source.ImageStatic#setAttributions" class="unstable">
<a href="ol.source.ImageStatic.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.ImageStatic#setProperties" class="">
<a href="ol.source.ImageStatic.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.ImageStatic#un" class="">
<a href="ol.source.ImageStatic.html#un">un</a>
</li>
<li data-name="ol.source.ImageStatic#unByKey" class="">
<a href="ol.source.ImageStatic.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.ImageStatic#unset" class="">
<a href="ol.source.ImageStatic.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.ImageVector">
<span class="title">
<a href="ol.source.ImageVector.html">ol.source.ImageVector</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ImageVector#changed" class="unstable">
<a href="ol.source.ImageVector.html#changed">changed</a>
</li>
<li data-name="ol.source.ImageVector#dispatchEvent" class="unstable">
<a href="ol.source.ImageVector.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.ImageVector#get" class="">
<a href="ol.source.ImageVector.html#get">get</a>
</li>
<li data-name="ol.source.ImageVector#getAttributions" class="">
<a href="ol.source.ImageVector.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.ImageVector#getKeys" class="">
<a href="ol.source.ImageVector.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.ImageVector#getLogo" class="">
<a href="ol.source.ImageVector.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.ImageVector#getProjection" class="unstable">
<a href="ol.source.ImageVector.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.ImageVector#getProperties" class="">
<a href="ol.source.ImageVector.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.ImageVector#getRevision" class="unstable">
<a href="ol.source.ImageVector.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.ImageVector#getSource" class="unstable">
<a href="ol.source.ImageVector.html#getSource">getSource</a>
</li>
<li data-name="ol.source.ImageVector#getState" class="unstable">
<a href="ol.source.ImageVector.html#getState">getState</a>
</li>
<li data-name="ol.source.ImageVector#getStyle" class="">
<a href="ol.source.ImageVector.html#getStyle">getStyle</a>
</li>
<li data-name="ol.source.ImageVector#getStyleFunction" class="">
<a href="ol.source.ImageVector.html#getStyleFunction">getStyleFunction</a>
</li>
<li data-name="ol.source.ImageVector#on" class="">
<a href="ol.source.ImageVector.html#on">on</a>
</li>
<li data-name="ol.source.ImageVector#once" class="">
<a href="ol.source.ImageVector.html#once">once</a>
</li>
<li data-name="ol.source.ImageVector#refresh" class="unstable">
<a href="ol.source.ImageVector.html#refresh">refresh</a>
</li>
<li data-name="ol.source.ImageVector#set" class="">
<a href="ol.source.ImageVector.html#set">set</a>
</li>
<li data-name="ol.source.ImageVector#setAttributions" class="unstable">
<a href="ol.source.ImageVector.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.ImageVector#setProperties" class="">
<a href="ol.source.ImageVector.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.ImageVector#setStyle" class="">
<a href="ol.source.ImageVector.html#setStyle">setStyle</a>
</li>
<li data-name="ol.source.ImageVector#un" class="">
<a href="ol.source.ImageVector.html#un">un</a>
</li>
<li data-name="ol.source.ImageVector#unByKey" class="">
<a href="ol.source.ImageVector.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.ImageVector#unset" class="">
<a href="ol.source.ImageVector.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.ImageWMS">
<span class="title">
<a href="ol.source.ImageWMS.html">ol.source.ImageWMS</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ImageWMS#changed" class="unstable">
<a href="ol.source.ImageWMS.html#changed">changed</a>
</li>
<li data-name="ol.source.ImageWMS#dispatchEvent" class="unstable">
<a href="ol.source.ImageWMS.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.ImageWMS#get" class="">
<a href="ol.source.ImageWMS.html#get">get</a>
</li>
<li data-name="ol.source.ImageWMS#getAttributions" class="">
<a href="ol.source.ImageWMS.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.ImageWMS#getGetFeatureInfoUrl" class="">
<a href="ol.source.ImageWMS.html#getGetFeatureInfoUrl">getGetFeatureInfoUrl</a>
</li>
<li data-name="ol.source.ImageWMS#getImageLoadFunction" class="unstable">
<a href="ol.source.ImageWMS.html#getImageLoadFunction">getImageLoadFunction</a>
</li>
<li data-name="ol.source.ImageWMS#getKeys" class="">
<a href="ol.source.ImageWMS.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.ImageWMS#getLogo" class="">
<a href="ol.source.ImageWMS.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.ImageWMS#getParams" class="">
<a href="ol.source.ImageWMS.html#getParams">getParams</a>
</li>
<li data-name="ol.source.ImageWMS#getProjection" class="unstable">
<a href="ol.source.ImageWMS.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.ImageWMS#getProperties" class="">
<a href="ol.source.ImageWMS.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.ImageWMS#getRevision" class="unstable">
<a href="ol.source.ImageWMS.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.ImageWMS#getState" class="unstable">
<a href="ol.source.ImageWMS.html#getState">getState</a>
</li>
<li data-name="ol.source.ImageWMS#getUrl" class="">
<a href="ol.source.ImageWMS.html#getUrl">getUrl</a>
</li>
<li data-name="ol.source.ImageWMS#on" class="">
<a href="ol.source.ImageWMS.html#on">on</a>
</li>
<li data-name="ol.source.ImageWMS#once" class="">
<a href="ol.source.ImageWMS.html#once">once</a>
</li>
<li data-name="ol.source.ImageWMS#refresh" class="unstable">
<a href="ol.source.ImageWMS.html#refresh">refresh</a>
</li>
<li data-name="ol.source.ImageWMS#set" class="">
<a href="ol.source.ImageWMS.html#set">set</a>
</li>
<li data-name="ol.source.ImageWMS#setAttributions" class="unstable">
<a href="ol.source.ImageWMS.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.ImageWMS#setImageLoadFunction" class="unstable">
<a href="ol.source.ImageWMS.html#setImageLoadFunction">setImageLoadFunction</a>
</li>
<li data-name="ol.source.ImageWMS#setProperties" class="">
<a href="ol.source.ImageWMS.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.ImageWMS#setUrl" class="">
<a href="ol.source.ImageWMS.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.ImageWMS#un" class="">
<a href="ol.source.ImageWMS.html#un">un</a>
</li>
<li data-name="ol.source.ImageWMS#unByKey" class="">
<a href="ol.source.ImageWMS.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.ImageWMS#unset" class="">
<a href="ol.source.ImageWMS.html#unset">unset</a>
</li>
<li data-name="ol.source.ImageWMS#updateParams" class="">
<a href="ol.source.ImageWMS.html#updateParams">updateParams</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.source.ImageEvent#event:imageloadend" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloadend">imageloadend</a>
</li>
<li data-name="ol.source.ImageEvent#event:imageloaderror" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloaderror">imageloaderror</a>
</li>
<li data-name="ol.source.ImageEvent#event:imageloadstart" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloadstart">imageloadstart</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.MapQuest">
<span class="title">
<a href="ol.source.MapQuest.html">ol.source.MapQuest</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.MapQuest#changed" class="unstable">
<a href="ol.source.MapQuest.html#changed">changed</a>
</li>
<li data-name="ol.source.MapQuest#dispatchEvent" class="unstable">
<a href="ol.source.MapQuest.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.MapQuest#get" class="">
<a href="ol.source.MapQuest.html#get">get</a>
</li>
<li data-name="ol.source.MapQuest#getAttributions" class="">
<a href="ol.source.MapQuest.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.MapQuest#getKeys" class="">
<a href="ol.source.MapQuest.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.MapQuest#getLayer" class="unstable">
<a href="ol.source.MapQuest.html#getLayer">getLayer</a>
</li>
<li data-name="ol.source.MapQuest#getLogo" class="">
<a href="ol.source.MapQuest.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.MapQuest#getProjection" class="unstable">
<a href="ol.source.MapQuest.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.MapQuest#getProperties" class="">
<a href="ol.source.MapQuest.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.MapQuest#getRevision" class="unstable">
<a href="ol.source.MapQuest.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.MapQuest#getState" class="unstable">
<a href="ol.source.MapQuest.html#getState">getState</a>
</li>
<li data-name="ol.source.MapQuest#getTileGrid" class="">
<a href="ol.source.MapQuest.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.MapQuest#getTileLoadFunction" class="unstable">
<a href="ol.source.MapQuest.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.MapQuest#getTileUrlFunction" class="unstable">
<a href="ol.source.MapQuest.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.MapQuest#getUrls" class="unstable">
<a href="ol.source.MapQuest.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.MapQuest#on" class="">
<a href="ol.source.MapQuest.html#on">on</a>
</li>
<li data-name="ol.source.MapQuest#once" class="">
<a href="ol.source.MapQuest.html#once">once</a>
</li>
<li data-name="ol.source.MapQuest#refresh" class="unstable">
<a href="ol.source.MapQuest.html#refresh">refresh</a>
</li>
<li data-name="ol.source.MapQuest#set" class="">
<a href="ol.source.MapQuest.html#set">set</a>
</li>
<li data-name="ol.source.MapQuest#setAttributions" class="unstable">
<a href="ol.source.MapQuest.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.MapQuest#setProperties" class="">
<a href="ol.source.MapQuest.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.MapQuest#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.MapQuest.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.MapQuest#setTileGridForProjection" class="unstable">
<a href="ol.source.MapQuest.html#setTileGridForProjection">setTileGridForProjection</a>
</li>
<li data-name="ol.source.MapQuest#setTileLoadFunction" class="unstable">
<a href="ol.source.MapQuest.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.MapQuest#setTileUrlFunction" class="unstable">
<a href="ol.source.MapQuest.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.MapQuest#setUrl" class="">
<a href="ol.source.MapQuest.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.MapQuest#setUrls" class="">
<a href="ol.source.MapQuest.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.MapQuest#un" class="">
<a href="ol.source.MapQuest.html#un">un</a>
</li>
<li data-name="ol.source.MapQuest#unByKey" class="">
<a href="ol.source.MapQuest.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.MapQuest#unset" class="">
<a href="ol.source.MapQuest.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.OSM">
<span class="title">
<a href="ol.source.OSM.html">ol.source.OSM</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.source.OSM.ATTRIBUTION"><a href="ol.source.OSM.html#.ATTRIBUTION">ATTRIBUTION</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.OSM#changed" class="unstable">
<a href="ol.source.OSM.html#changed">changed</a>
</li>
<li data-name="ol.source.OSM#dispatchEvent" class="unstable">
<a href="ol.source.OSM.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.OSM#get" class="">
<a href="ol.source.OSM.html#get">get</a>
</li>
<li data-name="ol.source.OSM#getAttributions" class="">
<a href="ol.source.OSM.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.OSM#getKeys" class="">
<a href="ol.source.OSM.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.OSM#getLogo" class="">
<a href="ol.source.OSM.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.OSM#getProjection" class="unstable">
<a href="ol.source.OSM.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.OSM#getProperties" class="">
<a href="ol.source.OSM.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.OSM#getRevision" class="unstable">
<a href="ol.source.OSM.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.OSM#getState" class="unstable">
<a href="ol.source.OSM.html#getState">getState</a>
</li>
<li data-name="ol.source.OSM#getTileGrid" class="">
<a href="ol.source.OSM.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.OSM#getTileLoadFunction" class="unstable">
<a href="ol.source.OSM.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.OSM#getTileUrlFunction" class="unstable">
<a href="ol.source.OSM.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.OSM#getUrls" class="unstable">
<a href="ol.source.OSM.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.OSM#on" class="">
<a href="ol.source.OSM.html#on">on</a>
</li>
<li data-name="ol.source.OSM#once" class="">
<a href="ol.source.OSM.html#once">once</a>
</li>
<li data-name="ol.source.OSM#refresh" class="unstable">
<a href="ol.source.OSM.html#refresh">refresh</a>
</li>
<li data-name="ol.source.OSM#set" class="">
<a href="ol.source.OSM.html#set">set</a>
</li>
<li data-name="ol.source.OSM#setAttributions" class="unstable">
<a href="ol.source.OSM.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.OSM#setProperties" class="">
<a href="ol.source.OSM.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.OSM#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.OSM.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.OSM#setTileGridForProjection" class="unstable">
<a href="ol.source.OSM.html#setTileGridForProjection">setTileGridForProjection</a>
</li>
<li data-name="ol.source.OSM#setTileLoadFunction" class="unstable">
<a href="ol.source.OSM.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.OSM#setTileUrlFunction" class="unstable">
<a href="ol.source.OSM.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.OSM#setUrl" class="">
<a href="ol.source.OSM.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.OSM#setUrls" class="">
<a href="ol.source.OSM.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.OSM#un" class="">
<a href="ol.source.OSM.html#un">un</a>
</li>
<li data-name="ol.source.OSM#unByKey" class="">
<a href="ol.source.OSM.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.OSM#unset" class="">
<a href="ol.source.OSM.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Raster">
<span class="title">
<a href="ol.source.Raster.html">ol.source.Raster</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Raster#changed" class="unstable">
<a href="ol.source.Raster.html#changed">changed</a>
</li>
<li data-name="ol.source.Raster#dispatchEvent" class="unstable">
<a href="ol.source.Raster.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.Raster#get" class="">
<a href="ol.source.Raster.html#get">get</a>
</li>
<li data-name="ol.source.Raster#getAttributions" class="">
<a href="ol.source.Raster.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Raster#getKeys" class="">
<a href="ol.source.Raster.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.Raster#getLogo" class="">
<a href="ol.source.Raster.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Raster#getProjection" class="unstable">
<a href="ol.source.Raster.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Raster#getProperties" class="">
<a href="ol.source.Raster.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.Raster#getRevision" class="unstable">
<a href="ol.source.Raster.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Raster#getState" class="unstable">
<a href="ol.source.Raster.html#getState">getState</a>
</li>
<li data-name="ol.source.Raster#on" class="">
<a href="ol.source.Raster.html#on">on</a>
</li>
<li data-name="ol.source.Raster#once" class="">
<a href="ol.source.Raster.html#once">once</a>
</li>
<li data-name="ol.source.Raster#refresh" class="unstable">
<a href="ol.source.Raster.html#refresh">refresh</a>
</li>
<li data-name="ol.source.Raster#set" class="">
<a href="ol.source.Raster.html#set">set</a>
</li>
<li data-name="ol.source.Raster#setAttributions" class="unstable">
<a href="ol.source.Raster.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.Raster#setOperation" class="unstable">
<a href="ol.source.Raster.html#setOperation">setOperation</a>
</li>
<li data-name="ol.source.Raster#setProperties" class="">
<a href="ol.source.Raster.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Raster#un" class="">
<a href="ol.source.Raster.html#un">un</a>
</li>
<li data-name="ol.source.Raster#unByKey" class="">
<a href="ol.source.Raster.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.Raster#unset" class="">
<a href="ol.source.Raster.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.source.RasterEvent#event:afteroperations" class="unstable">
<a href="ol.source.RasterEvent.html#event:afteroperations">afteroperations</a>
</li>
<li data-name="ol.source.RasterEvent#event:beforeoperations" class="unstable">
<a href="ol.source.RasterEvent.html#event:beforeoperations">beforeoperations</a>
</li>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.RasterEvent">
<span class="title">
<a href="ol.source.RasterEvent.html">ol.source.RasterEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.source.RasterEvent#data"><a href="ol.source.RasterEvent.html#data">data</a></li>
<li data-name="ol.source.RasterEvent#extent"><a href="ol.source.RasterEvent.html#extent">extent</a></li>
<li data-name="ol.source.RasterEvent#resolution"><a href="ol.source.RasterEvent.html#resolution">resolution</a></li>
<li data-name="ol.source.RasterEvent#target"><a href="ol.source.RasterEvent.html#target">target</a></li>
<li data-name="ol.source.RasterEvent#type"><a href="ol.source.RasterEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.RasterEvent#preventDefault" class="">
<a href="ol.source.RasterEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.source.RasterEvent#stopPropagation" class="">
<a href="ol.source.RasterEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.source.Source">
<span class="title">
<a href="ol.source.Source.html">ol.source.Source</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Source#changed" class="unstable">
<a href="ol.source.Source.html#changed">changed</a>
</li>
<li data-name="ol.source.Source#dispatchEvent" class="unstable">
<a href="ol.source.Source.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.Source#get" class="">
<a href="ol.source.Source.html#get">get</a>
</li>
<li data-name="ol.source.Source#getAttributions" class="">
<a href="ol.source.Source.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Source#getKeys" class="">
<a href="ol.source.Source.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.Source#getLogo" class="">
<a href="ol.source.Source.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Source#getProjection" class="unstable">
<a href="ol.source.Source.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Source#getProperties" class="">
<a href="ol.source.Source.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.Source#getRevision" class="unstable">
<a href="ol.source.Source.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Source#getState" class="unstable">
<a href="ol.source.Source.html#getState">getState</a>
</li>
<li data-name="ol.source.Source#on" class="">
<a href="ol.source.Source.html#on">on</a>
</li>
<li data-name="ol.source.Source#once" class="">
<a href="ol.source.Source.html#once">once</a>
</li>
<li data-name="ol.source.Source#refresh" class="unstable">
<a href="ol.source.Source.html#refresh">refresh</a>
</li>
<li data-name="ol.source.Source#set" class="">
<a href="ol.source.Source.html#set">set</a>
</li>
<li data-name="ol.source.Source#setAttributions" class="unstable">
<a href="ol.source.Source.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.Source#setProperties" class="">
<a href="ol.source.Source.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Source#un" class="">
<a href="ol.source.Source.html#un">un</a>
</li>
<li data-name="ol.source.Source#unByKey" class="">
<a href="ol.source.Source.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.Source#unset" class="">
<a href="ol.source.Source.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Stamen">
<span class="title">
<a href="ol.source.Stamen.html">ol.source.Stamen</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Stamen#changed" class="unstable">
<a href="ol.source.Stamen.html#changed">changed</a>
</li>
<li data-name="ol.source.Stamen#dispatchEvent" class="unstable">
<a href="ol.source.Stamen.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.Stamen#get" class="">
<a href="ol.source.Stamen.html#get">get</a>
</li>
<li data-name="ol.source.Stamen#getAttributions" class="">
<a href="ol.source.Stamen.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Stamen#getKeys" class="">
<a href="ol.source.Stamen.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.Stamen#getLogo" class="">
<a href="ol.source.Stamen.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Stamen#getProjection" class="unstable">
<a href="ol.source.Stamen.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Stamen#getProperties" class="">
<a href="ol.source.Stamen.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.Stamen#getRevision" class="unstable">
<a href="ol.source.Stamen.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Stamen#getState" class="unstable">
<a href="ol.source.Stamen.html#getState">getState</a>
</li>
<li data-name="ol.source.Stamen#getTileGrid" class="">
<a href="ol.source.Stamen.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.Stamen#getTileLoadFunction" class="unstable">
<a href="ol.source.Stamen.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.Stamen#getTileUrlFunction" class="unstable">
<a href="ol.source.Stamen.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.Stamen#getUrls" class="unstable">
<a href="ol.source.Stamen.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.Stamen#on" class="">
<a href="ol.source.Stamen.html#on">on</a>
</li>
<li data-name="ol.source.Stamen#once" class="">
<a href="ol.source.Stamen.html#once">once</a>
</li>
<li data-name="ol.source.Stamen#refresh" class="unstable">
<a href="ol.source.Stamen.html#refresh">refresh</a>
</li>
<li data-name="ol.source.Stamen#set" class="">
<a href="ol.source.Stamen.html#set">set</a>
</li>
<li data-name="ol.source.Stamen#setAttributions" class="unstable">
<a href="ol.source.Stamen.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.Stamen#setProperties" class="">
<a href="ol.source.Stamen.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Stamen#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.Stamen.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.Stamen#setTileGridForProjection" class="unstable">
<a href="ol.source.Stamen.html#setTileGridForProjection">setTileGridForProjection</a>
</li>
<li data-name="ol.source.Stamen#setTileLoadFunction" class="unstable">
<a href="ol.source.Stamen.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.Stamen#setTileUrlFunction" class="unstable">
<a href="ol.source.Stamen.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.Stamen#setUrl" class="">
<a href="ol.source.Stamen.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.Stamen#setUrls" class="">
<a href="ol.source.Stamen.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.Stamen#un" class="">
<a href="ol.source.Stamen.html#un">un</a>
</li>
<li data-name="ol.source.Stamen#unByKey" class="">
<a href="ol.source.Stamen.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.Stamen#unset" class="">
<a href="ol.source.Stamen.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Tile">
<span class="title">
<a href="ol.source.Tile.html">ol.source.Tile</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Tile#changed" class="unstable">
<a href="ol.source.Tile.html#changed">changed</a>
</li>
<li data-name="ol.source.Tile#dispatchEvent" class="unstable">
<a href="ol.source.Tile.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.Tile#get" class="">
<a href="ol.source.Tile.html#get">get</a>
</li>
<li data-name="ol.source.Tile#getAttributions" class="">
<a href="ol.source.Tile.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Tile#getKeys" class="">
<a href="ol.source.Tile.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.Tile#getLogo" class="">
<a href="ol.source.Tile.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Tile#getProjection" class="unstable">
<a href="ol.source.Tile.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Tile#getProperties" class="">
<a href="ol.source.Tile.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.Tile#getRevision" class="unstable">
<a href="ol.source.Tile.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Tile#getState" class="unstable">
<a href="ol.source.Tile.html#getState">getState</a>
</li>
<li data-name="ol.source.Tile#getTileGrid" class="">
<a href="ol.source.Tile.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.Tile#on" class="">
<a href="ol.source.Tile.html#on">on</a>
</li>
<li data-name="ol.source.Tile#once" class="">
<a href="ol.source.Tile.html#once">once</a>
</li>
<li data-name="ol.source.Tile#refresh" class="unstable">
<a href="ol.source.Tile.html#refresh">refresh</a>
</li>
<li data-name="ol.source.Tile#set" class="">
<a href="ol.source.Tile.html#set">set</a>
</li>
<li data-name="ol.source.Tile#setAttributions" class="unstable">
<a href="ol.source.Tile.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.Tile#setProperties" class="">
<a href="ol.source.Tile.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Tile#un" class="">
<a href="ol.source.Tile.html#un">un</a>
</li>
<li data-name="ol.source.Tile#unByKey" class="">
<a href="ol.source.Tile.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.Tile#unset" class="">
<a href="ol.source.Tile.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileArcGISRest">
<span class="title">
<a href="ol.source.TileArcGISRest.html">ol.source.TileArcGISRest</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileArcGISRest#changed" class="unstable">
<a href="ol.source.TileArcGISRest.html#changed">changed</a>
</li>
<li data-name="ol.source.TileArcGISRest#dispatchEvent" class="unstable">
<a href="ol.source.TileArcGISRest.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.TileArcGISRest#get" class="">
<a href="ol.source.TileArcGISRest.html#get">get</a>
</li>
<li data-name="ol.source.TileArcGISRest#getAttributions" class="">
<a href="ol.source.TileArcGISRest.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileArcGISRest#getKeys" class="">
<a href="ol.source.TileArcGISRest.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.TileArcGISRest#getLogo" class="">
<a href="ol.source.TileArcGISRest.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileArcGISRest#getParams" class="unstable">
<a href="ol.source.TileArcGISRest.html#getParams">getParams</a>
</li>
<li data-name="ol.source.TileArcGISRest#getProjection" class="unstable">
<a href="ol.source.TileArcGISRest.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileArcGISRest#getProperties" class="">
<a href="ol.source.TileArcGISRest.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.TileArcGISRest#getRevision" class="unstable">
<a href="ol.source.TileArcGISRest.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileArcGISRest#getState" class="unstable">
<a href="ol.source.TileArcGISRest.html#getState">getState</a>
</li>
<li data-name="ol.source.TileArcGISRest#getTileGrid" class="">
<a href="ol.source.TileArcGISRest.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileArcGISRest#getTileLoadFunction" class="unstable">
<a href="ol.source.TileArcGISRest.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.TileArcGISRest#getTileUrlFunction" class="unstable">
<a href="ol.source.TileArcGISRest.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.TileArcGISRest#getUrls" class="unstable">
<a href="ol.source.TileArcGISRest.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.TileArcGISRest#on" class="">
<a href="ol.source.TileArcGISRest.html#on">on</a>
</li>
<li data-name="ol.source.TileArcGISRest#once" class="">
<a href="ol.source.TileArcGISRest.html#once">once</a>
</li>
<li data-name="ol.source.TileArcGISRest#refresh" class="unstable">
<a href="ol.source.TileArcGISRest.html#refresh">refresh</a>
</li>
<li data-name="ol.source.TileArcGISRest#set" class="">
<a href="ol.source.TileArcGISRest.html#set">set</a>
</li>
<li data-name="ol.source.TileArcGISRest#setAttributions" class="unstable">
<a href="ol.source.TileArcGISRest.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.TileArcGISRest#setProperties" class="">
<a href="ol.source.TileArcGISRest.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileArcGISRest#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.TileArcGISRest.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.TileArcGISRest#setTileGridForProjection" class="unstable">
<a href="ol.source.TileArcGISRest.html#setTileGridForProjection">setTileGridForProjection</a>
</li>
<li data-name="ol.source.TileArcGISRest#setTileLoadFunction" class="unstable">
<a href="ol.source.TileArcGISRest.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.TileArcGISRest#setTileUrlFunction" class="unstable">
<a href="ol.source.TileArcGISRest.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.TileArcGISRest#setUrl" class="">
<a href="ol.source.TileArcGISRest.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.TileArcGISRest#setUrls" class="">
<a href="ol.source.TileArcGISRest.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.TileArcGISRest#un" class="">
<a href="ol.source.TileArcGISRest.html#un">un</a>
</li>
<li data-name="ol.source.TileArcGISRest#unByKey" class="">
<a href="ol.source.TileArcGISRest.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.TileArcGISRest#unset" class="">
<a href="ol.source.TileArcGISRest.html#unset">unset</a>
</li>
<li data-name="ol.source.TileArcGISRest#updateParams" class="">
<a href="ol.source.TileArcGISRest.html#updateParams">updateParams</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileDebug">
<span class="title">
<a href="ol.source.TileDebug.html">ol.source.TileDebug</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileDebug#changed" class="unstable">
<a href="ol.source.TileDebug.html#changed">changed</a>
</li>
<li data-name="ol.source.TileDebug#dispatchEvent" class="unstable">
<a href="ol.source.TileDebug.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.TileDebug#get" class="">
<a href="ol.source.TileDebug.html#get">get</a>
</li>
<li data-name="ol.source.TileDebug#getAttributions" class="">
<a href="ol.source.TileDebug.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileDebug#getKeys" class="">
<a href="ol.source.TileDebug.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.TileDebug#getLogo" class="">
<a href="ol.source.TileDebug.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileDebug#getProjection" class="unstable">
<a href="ol.source.TileDebug.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileDebug#getProperties" class="">
<a href="ol.source.TileDebug.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.TileDebug#getRevision" class="unstable">
<a href="ol.source.TileDebug.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileDebug#getState" class="unstable">
<a href="ol.source.TileDebug.html#getState">getState</a>
</li>
<li data-name="ol.source.TileDebug#getTileGrid" class="">
<a href="ol.source.TileDebug.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileDebug#on" class="">
<a href="ol.source.TileDebug.html#on">on</a>
</li>
<li data-name="ol.source.TileDebug#once" class="">
<a href="ol.source.TileDebug.html#once">once</a>
</li>
<li data-name="ol.source.TileDebug#refresh" class="unstable">
<a href="ol.source.TileDebug.html#refresh">refresh</a>
</li>
<li data-name="ol.source.TileDebug#set" class="">
<a href="ol.source.TileDebug.html#set">set</a>
</li>
<li data-name="ol.source.TileDebug#setAttributions" class="unstable">
<a href="ol.source.TileDebug.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.TileDebug#setProperties" class="">
<a href="ol.source.TileDebug.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileDebug#un" class="">
<a href="ol.source.TileDebug.html#un">un</a>
</li>
<li data-name="ol.source.TileDebug#unByKey" class="">
<a href="ol.source.TileDebug.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.TileDebug#unset" class="">
<a href="ol.source.TileDebug.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileEvent">
<span class="title">
<a href="ol.source.TileEvent.html">ol.source.TileEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.source.TileEvent#target"><a href="ol.source.TileEvent.html#target">target</a></li>
<li data-name="ol.source.TileEvent#tile"><a href="ol.source.TileEvent.html#tile">tile</a></li>
<li data-name="ol.source.TileEvent#type"><a href="ol.source.TileEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileEvent#preventDefault" class="">
<a href="ol.source.TileEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.source.TileEvent#stopPropagation" class="">
<a href="ol.source.TileEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.source.TileImage">
<span class="title">
<a href="ol.source.TileImage.html">ol.source.TileImage</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileImage#changed" class="unstable">
<a href="ol.source.TileImage.html#changed">changed</a>
</li>
<li data-name="ol.source.TileImage#dispatchEvent" class="unstable">
<a href="ol.source.TileImage.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.TileImage#get" class="">
<a href="ol.source.TileImage.html#get">get</a>
</li>
<li data-name="ol.source.TileImage#getAttributions" class="">
<a href="ol.source.TileImage.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileImage#getKeys" class="">
<a href="ol.source.TileImage.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.TileImage#getLogo" class="">
<a href="ol.source.TileImage.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileImage#getProjection" class="unstable">
<a href="ol.source.TileImage.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileImage#getProperties" class="">
<a href="ol.source.TileImage.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.TileImage#getRevision" class="unstable">
<a href="ol.source.TileImage.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileImage#getState" class="unstable">
<a href="ol.source.TileImage.html#getState">getState</a>
</li>
<li data-name="ol.source.TileImage#getTileGrid" class="">
<a href="ol.source.TileImage.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileImage#getTileLoadFunction" class="unstable">
<a href="ol.source.TileImage.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.TileImage#getTileUrlFunction" class="unstable">
<a href="ol.source.TileImage.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.TileImage#getUrls" class="unstable">
<a href="ol.source.TileImage.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.TileImage#on" class="">
<a href="ol.source.TileImage.html#on">on</a>
</li>
<li data-name="ol.source.TileImage#once" class="">
<a href="ol.source.TileImage.html#once">once</a>
</li>
<li data-name="ol.source.TileImage#refresh" class="unstable">
<a href="ol.source.TileImage.html#refresh">refresh</a>
</li>
<li data-name="ol.source.TileImage#set" class="">
<a href="ol.source.TileImage.html#set">set</a>
</li>
<li data-name="ol.source.TileImage#setAttributions" class="unstable">
<a href="ol.source.TileImage.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.TileImage#setProperties" class="">
<a href="ol.source.TileImage.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileImage#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.TileImage.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.TileImage#setTileGridForProjection" class="unstable">
<a href="ol.source.TileImage.html#setTileGridForProjection">setTileGridForProjection</a>
</li>
<li data-name="ol.source.TileImage#setTileLoadFunction" class="unstable">
<a href="ol.source.TileImage.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.TileImage#setTileUrlFunction" class="unstable">
<a href="ol.source.TileImage.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.TileImage#setUrl" class="">
<a href="ol.source.TileImage.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.TileImage#setUrls" class="">
<a href="ol.source.TileImage.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.TileImage#un" class="">
<a href="ol.source.TileImage.html#un">un</a>
</li>
<li data-name="ol.source.TileImage#unByKey" class="">
<a href="ol.source.TileImage.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.TileImage#unset" class="">
<a href="ol.source.TileImage.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileJSON">
<span class="title">
<a href="ol.source.TileJSON.html">ol.source.TileJSON</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileJSON#changed" class="unstable">
<a href="ol.source.TileJSON.html#changed">changed</a>
</li>
<li data-name="ol.source.TileJSON#dispatchEvent" class="unstable">
<a href="ol.source.TileJSON.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.TileJSON#get" class="">
<a href="ol.source.TileJSON.html#get">get</a>
</li>
<li data-name="ol.source.TileJSON#getAttributions" class="">
<a href="ol.source.TileJSON.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileJSON#getKeys" class="">
<a href="ol.source.TileJSON.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.TileJSON#getLogo" class="">
<a href="ol.source.TileJSON.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileJSON#getProjection" class="unstable">
<a href="ol.source.TileJSON.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileJSON#getProperties" class="">
<a href="ol.source.TileJSON.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.TileJSON#getRevision" class="unstable">
<a href="ol.source.TileJSON.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileJSON#getState" class="unstable">
<a href="ol.source.TileJSON.html#getState">getState</a>
</li>
<li data-name="ol.source.TileJSON#getTileGrid" class="">
<a href="ol.source.TileJSON.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileJSON#getTileJSON" class="unstable">
<a href="ol.source.TileJSON.html#getTileJSON">getTileJSON</a>
</li>
<li data-name="ol.source.TileJSON#getTileLoadFunction" class="unstable">
<a href="ol.source.TileJSON.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.TileJSON#getTileUrlFunction" class="unstable">
<a href="ol.source.TileJSON.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.TileJSON#getUrls" class="unstable">
<a href="ol.source.TileJSON.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.TileJSON#on" class="">
<a href="ol.source.TileJSON.html#on">on</a>
</li>
<li data-name="ol.source.TileJSON#once" class="">
<a href="ol.source.TileJSON.html#once">once</a>
</li>
<li data-name="ol.source.TileJSON#refresh" class="unstable">
<a href="ol.source.TileJSON.html#refresh">refresh</a>
</li>
<li data-name="ol.source.TileJSON#set" class="">
<a href="ol.source.TileJSON.html#set">set</a>
</li>
<li data-name="ol.source.TileJSON#setAttributions" class="unstable">
<a href="ol.source.TileJSON.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.TileJSON#setProperties" class="">
<a href="ol.source.TileJSON.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileJSON#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.TileJSON.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.TileJSON#setTileGridForProjection" class="unstable">
<a href="ol.source.TileJSON.html#setTileGridForProjection">setTileGridForProjection</a>
</li>
<li data-name="ol.source.TileJSON#setTileLoadFunction" class="unstable">
<a href="ol.source.TileJSON.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.TileJSON#setTileUrlFunction" class="unstable">
<a href="ol.source.TileJSON.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.TileJSON#setUrl" class="">
<a href="ol.source.TileJSON.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.TileJSON#setUrls" class="">
<a href="ol.source.TileJSON.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.TileJSON#un" class="">
<a href="ol.source.TileJSON.html#un">un</a>
</li>
<li data-name="ol.source.TileJSON#unByKey" class="">
<a href="ol.source.TileJSON.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.TileJSON#unset" class="">
<a href="ol.source.TileJSON.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileUTFGrid">
<span class="title">
<a href="ol.source.TileUTFGrid.html">ol.source.TileUTFGrid</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileUTFGrid#changed" class="unstable">
<a href="ol.source.TileUTFGrid.html#changed">changed</a>
</li>
<li data-name="ol.source.TileUTFGrid#dispatchEvent" class="unstable">
<a href="ol.source.TileUTFGrid.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.TileUTFGrid#forDataAtCoordinateAndResolution" class="unstable">
<a href="ol.source.TileUTFGrid.html#forDataAtCoordinateAndResolution">forDataAtCoordinateAndResolution</a>
</li>
<li data-name="ol.source.TileUTFGrid#get" class="">
<a href="ol.source.TileUTFGrid.html#get">get</a>
</li>
<li data-name="ol.source.TileUTFGrid#getAttributions" class="">
<a href="ol.source.TileUTFGrid.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileUTFGrid#getKeys" class="">
<a href="ol.source.TileUTFGrid.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.TileUTFGrid#getLogo" class="">
<a href="ol.source.TileUTFGrid.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileUTFGrid#getProjection" class="unstable">
<a href="ol.source.TileUTFGrid.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileUTFGrid#getProperties" class="">
<a href="ol.source.TileUTFGrid.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.TileUTFGrid#getRevision" class="unstable">
<a href="ol.source.TileUTFGrid.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileUTFGrid#getState" class="unstable">
<a href="ol.source.TileUTFGrid.html#getState">getState</a>
</li>
<li data-name="ol.source.TileUTFGrid#getTemplate" class="unstable">
<a href="ol.source.TileUTFGrid.html#getTemplate">getTemplate</a>
</li>
<li data-name="ol.source.TileUTFGrid#getTileGrid" class="">
<a href="ol.source.TileUTFGrid.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileUTFGrid#on" class="">
<a href="ol.source.TileUTFGrid.html#on">on</a>
</li>
<li data-name="ol.source.TileUTFGrid#once" class="">
<a href="ol.source.TileUTFGrid.html#once">once</a>
</li>
<li data-name="ol.source.TileUTFGrid#refresh" class="unstable">
<a href="ol.source.TileUTFGrid.html#refresh">refresh</a>
</li>
<li data-name="ol.source.TileUTFGrid#set" class="">
<a href="ol.source.TileUTFGrid.html#set">set</a>
</li>
<li data-name="ol.source.TileUTFGrid#setAttributions" class="unstable">
<a href="ol.source.TileUTFGrid.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.TileUTFGrid#setProperties" class="">
<a href="ol.source.TileUTFGrid.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileUTFGrid#un" class="">
<a href="ol.source.TileUTFGrid.html#un">un</a>
</li>
<li data-name="ol.source.TileUTFGrid#unByKey" class="">
<a href="ol.source.TileUTFGrid.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.TileUTFGrid#unset" class="">
<a href="ol.source.TileUTFGrid.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileWMS">
<span class="title">
<a href="ol.source.TileWMS.html">ol.source.TileWMS</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileWMS#changed" class="unstable">
<a href="ol.source.TileWMS.html#changed">changed</a>
</li>
<li data-name="ol.source.TileWMS#dispatchEvent" class="unstable">
<a href="ol.source.TileWMS.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.TileWMS#get" class="">
<a href="ol.source.TileWMS.html#get">get</a>
</li>
<li data-name="ol.source.TileWMS#getAttributions" class="">
<a href="ol.source.TileWMS.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileWMS#getGetFeatureInfoUrl" class="">
<a href="ol.source.TileWMS.html#getGetFeatureInfoUrl">getGetFeatureInfoUrl</a>
</li>
<li data-name="ol.source.TileWMS#getKeys" class="">
<a href="ol.source.TileWMS.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.TileWMS#getLogo" class="">
<a href="ol.source.TileWMS.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileWMS#getParams" class="">
<a href="ol.source.TileWMS.html#getParams">getParams</a>
</li>
<li data-name="ol.source.TileWMS#getProjection" class="unstable">
<a href="ol.source.TileWMS.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileWMS#getProperties" class="">
<a href="ol.source.TileWMS.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.TileWMS#getRevision" class="unstable">
<a href="ol.source.TileWMS.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileWMS#getState" class="unstable">
<a href="ol.source.TileWMS.html#getState">getState</a>
</li>
<li data-name="ol.source.TileWMS#getTileGrid" class="">
<a href="ol.source.TileWMS.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileWMS#getTileLoadFunction" class="unstable">
<a href="ol.source.TileWMS.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.TileWMS#getTileUrlFunction" class="unstable">
<a href="ol.source.TileWMS.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.TileWMS#getUrls" class="unstable">
<a href="ol.source.TileWMS.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.TileWMS#on" class="">
<a href="ol.source.TileWMS.html#on">on</a>
</li>
<li data-name="ol.source.TileWMS#once" class="">
<a href="ol.source.TileWMS.html#once">once</a>
</li>
<li data-name="ol.source.TileWMS#refresh" class="unstable">
<a href="ol.source.TileWMS.html#refresh">refresh</a>
</li>
<li data-name="ol.source.TileWMS#set" class="">
<a href="ol.source.TileWMS.html#set">set</a>
</li>
<li data-name="ol.source.TileWMS#setAttributions" class="unstable">
<a href="ol.source.TileWMS.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.TileWMS#setProperties" class="">
<a href="ol.source.TileWMS.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileWMS#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.TileWMS.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.TileWMS#setTileGridForProjection" class="unstable">
<a href="ol.source.TileWMS.html#setTileGridForProjection">setTileGridForProjection</a>
</li>
<li data-name="ol.source.TileWMS#setTileLoadFunction" class="unstable">
<a href="ol.source.TileWMS.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.TileWMS#setTileUrlFunction" class="unstable">
<a href="ol.source.TileWMS.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.TileWMS#setUrl" class="">
<a href="ol.source.TileWMS.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.TileWMS#setUrls" class="">
<a href="ol.source.TileWMS.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.TileWMS#un" class="">
<a href="ol.source.TileWMS.html#un">un</a>
</li>
<li data-name="ol.source.TileWMS#unByKey" class="">
<a href="ol.source.TileWMS.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.TileWMS#unset" class="">
<a href="ol.source.TileWMS.html#unset">unset</a>
</li>
<li data-name="ol.source.TileWMS#updateParams" class="">
<a href="ol.source.TileWMS.html#updateParams">updateParams</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.UrlTile">
<span class="title">
<a href="ol.source.UrlTile.html">ol.source.UrlTile</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.UrlTile#changed" class="unstable">
<a href="ol.source.UrlTile.html#changed">changed</a>
</li>
<li data-name="ol.source.UrlTile#dispatchEvent" class="unstable">
<a href="ol.source.UrlTile.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.UrlTile#get" class="">
<a href="ol.source.UrlTile.html#get">get</a>
</li>
<li data-name="ol.source.UrlTile#getAttributions" class="">
<a href="ol.source.UrlTile.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.UrlTile#getKeys" class="">
<a href="ol.source.UrlTile.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.UrlTile#getLogo" class="">
<a href="ol.source.UrlTile.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.UrlTile#getProjection" class="unstable">
<a href="ol.source.UrlTile.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.UrlTile#getProperties" class="">
<a href="ol.source.UrlTile.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.UrlTile#getRevision" class="unstable">
<a href="ol.source.UrlTile.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.UrlTile#getState" class="unstable">
<a href="ol.source.UrlTile.html#getState">getState</a>
</li>
<li data-name="ol.source.UrlTile#getTileGrid" class="">
<a href="ol.source.UrlTile.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.UrlTile#getTileLoadFunction" class="unstable">
<a href="ol.source.UrlTile.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.UrlTile#getTileUrlFunction" class="unstable">
<a href="ol.source.UrlTile.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.UrlTile#getUrls" class="unstable">
<a href="ol.source.UrlTile.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.UrlTile#on" class="">
<a href="ol.source.UrlTile.html#on">on</a>
</li>
<li data-name="ol.source.UrlTile#once" class="">
<a href="ol.source.UrlTile.html#once">once</a>
</li>
<li data-name="ol.source.UrlTile#refresh" class="unstable">
<a href="ol.source.UrlTile.html#refresh">refresh</a>
</li>
<li data-name="ol.source.UrlTile#set" class="">
<a href="ol.source.UrlTile.html#set">set</a>
</li>
<li data-name="ol.source.UrlTile#setAttributions" class="unstable">
<a href="ol.source.UrlTile.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.UrlTile#setProperties" class="">
<a href="ol.source.UrlTile.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.UrlTile#setTileLoadFunction" class="unstable">
<a href="ol.source.UrlTile.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.UrlTile#setTileUrlFunction" class="unstable">
<a href="ol.source.UrlTile.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.UrlTile#setUrl" class="">
<a href="ol.source.UrlTile.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.UrlTile#setUrls" class="">
<a href="ol.source.UrlTile.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.UrlTile#un" class="">
<a href="ol.source.UrlTile.html#un">un</a>
</li>
<li data-name="ol.source.UrlTile#unByKey" class="">
<a href="ol.source.UrlTile.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.UrlTile#unset" class="">
<a href="ol.source.UrlTile.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Vector">
<span class="title">
<a href="ol.source.Vector.html">ol.source.Vector</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Vector#addFeature" class="">
<a href="ol.source.Vector.html#addFeature">addFeature</a>
</li>
<li data-name="ol.source.Vector#addFeatures" class="">
<a href="ol.source.Vector.html#addFeatures">addFeatures</a>
</li>
<li data-name="ol.source.Vector#changed" class="unstable">
<a href="ol.source.Vector.html#changed">changed</a>
</li>
<li data-name="ol.source.Vector#clear" class="">
<a href="ol.source.Vector.html#clear">clear</a>
</li>
<li data-name="ol.source.Vector#dispatchEvent" class="unstable">
<a href="ol.source.Vector.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.Vector#forEachFeature" class="">
<a href="ol.source.Vector.html#forEachFeature">forEachFeature</a>
</li>
<li data-name="ol.source.Vector#forEachFeatureInExtent" class="unstable">
<a href="ol.source.Vector.html#forEachFeatureInExtent">forEachFeatureInExtent</a>
</li>
<li data-name="ol.source.Vector#forEachFeatureIntersectingExtent" class="unstable">
<a href="ol.source.Vector.html#forEachFeatureIntersectingExtent">forEachFeatureIntersectingExtent</a>
</li>
<li data-name="ol.source.Vector#get" class="">
<a href="ol.source.Vector.html#get">get</a>
</li>
<li data-name="ol.source.Vector#getAttributions" class="">
<a href="ol.source.Vector.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Vector#getClosestFeatureToCoordinate" class="">
<a href="ol.source.Vector.html#getClosestFeatureToCoordinate">getClosestFeatureToCoordinate</a>
</li>
<li data-name="ol.source.Vector#getExtent" class="">
<a href="ol.source.Vector.html#getExtent">getExtent</a>
</li>
<li data-name="ol.source.Vector#getFeatureById" class="">
<a href="ol.source.Vector.html#getFeatureById">getFeatureById</a>
</li>
<li data-name="ol.source.Vector#getFeatures" class="">
<a href="ol.source.Vector.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.source.Vector#getFeaturesAtCoordinate" class="">
<a href="ol.source.Vector.html#getFeaturesAtCoordinate">getFeaturesAtCoordinate</a>
</li>
<li data-name="ol.source.Vector#getFeaturesCollection" class="unstable">
<a href="ol.source.Vector.html#getFeaturesCollection">getFeaturesCollection</a>
</li>
<li data-name="ol.source.Vector#getFeaturesInExtent" class="unstable">
<a href="ol.source.Vector.html#getFeaturesInExtent">getFeaturesInExtent</a>
</li>
<li data-name="ol.source.Vector#getFormat" class="unstable">
<a href="ol.source.Vector.html#getFormat">getFormat</a>
</li>
<li data-name="ol.source.Vector#getKeys" class="">
<a href="ol.source.Vector.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.Vector#getLogo" class="">
<a href="ol.source.Vector.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Vector#getProjection" class="unstable">
<a href="ol.source.Vector.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Vector#getProperties" class="">
<a href="ol.source.Vector.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.Vector#getRevision" class="unstable">
<a href="ol.source.Vector.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Vector#getState" class="unstable">
<a href="ol.source.Vector.html#getState">getState</a>
</li>
<li data-name="ol.source.Vector#getUrl" class="unstable">
<a href="ol.source.Vector.html#getUrl">getUrl</a>
</li>
<li data-name="ol.source.Vector#on" class="">
<a href="ol.source.Vector.html#on">on</a>
</li>
<li data-name="ol.source.Vector#once" class="">
<a href="ol.source.Vector.html#once">once</a>
</li>
<li data-name="ol.source.Vector#refresh" class="unstable">
<a href="ol.source.Vector.html#refresh">refresh</a>
</li>
<li data-name="ol.source.Vector#removeFeature" class="">
<a href="ol.source.Vector.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.source.Vector#set" class="">
<a href="ol.source.Vector.html#set">set</a>
</li>
<li data-name="ol.source.Vector#setAttributions" class="unstable">
<a href="ol.source.Vector.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.Vector#setProperties" class="">
<a href="ol.source.Vector.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Vector#un" class="">
<a href="ol.source.Vector.html#un">un</a>
</li>
<li data-name="ol.source.Vector#unByKey" class="">
<a href="ol.source.Vector.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.Vector#unset" class="">
<a href="ol.source.Vector.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.source.VectorEvent#event:addfeature" class="">
<a href="ol.source.VectorEvent.html#event:addfeature">addfeature</a>
</li>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.source.VectorEvent#event:changefeature" class="unstable">
<a href="ol.source.VectorEvent.html#event:changefeature">changefeature</a>
</li>
<li data-name="ol.source.VectorEvent#event:clear" class="unstable">
<a href="ol.source.VectorEvent.html#event:clear">clear</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.VectorEvent#event:removefeature" class="">
<a href="ol.source.VectorEvent.html#event:removefeature">removefeature</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.VectorEvent">
<span class="title">
<a href="ol.source.VectorEvent.html">ol.source.VectorEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.source.VectorEvent#feature"><a href="ol.source.VectorEvent.html#feature">feature</a></li>
<li data-name="ol.source.VectorEvent#target"><a href="ol.source.VectorEvent.html#target">target</a></li>
<li data-name="ol.source.VectorEvent#type"><a href="ol.source.VectorEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.VectorEvent#preventDefault" class="">
<a href="ol.source.VectorEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.source.VectorEvent#stopPropagation" class="">
<a href="ol.source.VectorEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.source.VectorTile">
<span class="title">
<a href="ol.source.VectorTile.html">ol.source.VectorTile</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.VectorTile#changed" class="unstable">
<a href="ol.source.VectorTile.html#changed">changed</a>
</li>
<li data-name="ol.source.VectorTile#dispatchEvent" class="unstable">
<a href="ol.source.VectorTile.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.VectorTile#get" class="">
<a href="ol.source.VectorTile.html#get">get</a>
</li>
<li data-name="ol.source.VectorTile#getAttributions" class="">
<a href="ol.source.VectorTile.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.VectorTile#getKeys" class="">
<a href="ol.source.VectorTile.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.VectorTile#getLogo" class="">
<a href="ol.source.VectorTile.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.VectorTile#getProjection" class="unstable">
<a href="ol.source.VectorTile.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.VectorTile#getProperties" class="">
<a href="ol.source.VectorTile.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.VectorTile#getRevision" class="unstable">
<a href="ol.source.VectorTile.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.VectorTile#getState" class="unstable">
<a href="ol.source.VectorTile.html#getState">getState</a>
</li>
<li data-name="ol.source.VectorTile#getTileGrid" class="">
<a href="ol.source.VectorTile.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.VectorTile#getTileLoadFunction" class="unstable">
<a href="ol.source.VectorTile.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.VectorTile#getTileUrlFunction" class="unstable">
<a href="ol.source.VectorTile.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.VectorTile#getUrls" class="unstable">
<a href="ol.source.VectorTile.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.VectorTile#on" class="">
<a href="ol.source.VectorTile.html#on">on</a>
</li>
<li data-name="ol.source.VectorTile#once" class="">
<a href="ol.source.VectorTile.html#once">once</a>
</li>
<li data-name="ol.source.VectorTile#refresh" class="unstable">
<a href="ol.source.VectorTile.html#refresh">refresh</a>
</li>
<li data-name="ol.source.VectorTile#set" class="">
<a href="ol.source.VectorTile.html#set">set</a>
</li>
<li data-name="ol.source.VectorTile#setAttributions" class="unstable">
<a href="ol.source.VectorTile.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.VectorTile#setProperties" class="">
<a href="ol.source.VectorTile.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.VectorTile#setTileLoadFunction" class="unstable">
<a href="ol.source.VectorTile.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.VectorTile#setTileUrlFunction" class="unstable">
<a href="ol.source.VectorTile.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.VectorTile#setUrl" class="">
<a href="ol.source.VectorTile.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.VectorTile#setUrls" class="">
<a href="ol.source.VectorTile.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.VectorTile#un" class="">
<a href="ol.source.VectorTile.html#un">un</a>
</li>
<li data-name="ol.source.VectorTile#unByKey" class="">
<a href="ol.source.VectorTile.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.VectorTile#unset" class="">
<a href="ol.source.VectorTile.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.WMTS">
<span class="title">
<a href="ol.source.WMTS.html">ol.source.WMTS</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.WMTS.optionsFromCapabilities" class="unstable">
<a href="ol.source.WMTS.html#.optionsFromCapabilities">optionsFromCapabilities</a>
</li>
<li data-name="ol.source.WMTS#changed" class="unstable">
<a href="ol.source.WMTS.html#changed">changed</a>
</li>
<li data-name="ol.source.WMTS#dispatchEvent" class="unstable">
<a href="ol.source.WMTS.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.WMTS#get" class="">
<a href="ol.source.WMTS.html#get">get</a>
</li>
<li data-name="ol.source.WMTS#getAttributions" class="">
<a href="ol.source.WMTS.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.WMTS#getDimensions" class="unstable">
<a href="ol.source.WMTS.html#getDimensions">getDimensions</a>
</li>
<li data-name="ol.source.WMTS#getFormat" class="unstable">
<a href="ol.source.WMTS.html#getFormat">getFormat</a>
</li>
<li data-name="ol.source.WMTS#getKeys" class="">
<a href="ol.source.WMTS.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.WMTS#getLayer" class="unstable">
<a href="ol.source.WMTS.html#getLayer">getLayer</a>
</li>
<li data-name="ol.source.WMTS#getLogo" class="">
<a href="ol.source.WMTS.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.WMTS#getMatrixSet" class="unstable">
<a href="ol.source.WMTS.html#getMatrixSet">getMatrixSet</a>
</li>
<li data-name="ol.source.WMTS#getProjection" class="unstable">
<a href="ol.source.WMTS.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.WMTS#getProperties" class="">
<a href="ol.source.WMTS.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.WMTS#getRequestEncoding" class="unstable">
<a href="ol.source.WMTS.html#getRequestEncoding">getRequestEncoding</a>
</li>
<li data-name="ol.source.WMTS#getRevision" class="unstable">
<a href="ol.source.WMTS.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.WMTS#getState" class="unstable">
<a href="ol.source.WMTS.html#getState">getState</a>
</li>
<li data-name="ol.source.WMTS#getStyle" class="unstable">
<a href="ol.source.WMTS.html#getStyle">getStyle</a>
</li>
<li data-name="ol.source.WMTS#getTileGrid" class="">
<a href="ol.source.WMTS.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.WMTS#getTileLoadFunction" class="unstable">
<a href="ol.source.WMTS.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.WMTS#getTileUrlFunction" class="unstable">
<a href="ol.source.WMTS.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.WMTS#getUrls" class="unstable">
<a href="ol.source.WMTS.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.WMTS#getVersion" class="unstable">
<a href="ol.source.WMTS.html#getVersion">getVersion</a>
</li>
<li data-name="ol.source.WMTS#on" class="">
<a href="ol.source.WMTS.html#on">on</a>
</li>
<li data-name="ol.source.WMTS#once" class="">
<a href="ol.source.WMTS.html#once">once</a>
</li>
<li data-name="ol.source.WMTS#refresh" class="unstable">
<a href="ol.source.WMTS.html#refresh">refresh</a>
</li>
<li data-name="ol.source.WMTS#set" class="">
<a href="ol.source.WMTS.html#set">set</a>
</li>
<li data-name="ol.source.WMTS#setAttributions" class="unstable">
<a href="ol.source.WMTS.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.WMTS#setProperties" class="">
<a href="ol.source.WMTS.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.WMTS#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.WMTS.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.WMTS#setTileGridForProjection" class="unstable">
<a href="ol.source.WMTS.html#setTileGridForProjection">setTileGridForProjection</a>
</li>
<li data-name="ol.source.WMTS#setTileLoadFunction" class="unstable">
<a href="ol.source.WMTS.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.WMTS#setTileUrlFunction" class="unstable">
<a href="ol.source.WMTS.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.WMTS#setUrl" class="">
<a href="ol.source.WMTS.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.WMTS#setUrls" class="">
<a href="ol.source.WMTS.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.WMTS#un" class="">
<a href="ol.source.WMTS.html#un">un</a>
</li>
<li data-name="ol.source.WMTS#unByKey" class="">
<a href="ol.source.WMTS.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.WMTS#unset" class="">
<a href="ol.source.WMTS.html#unset">unset</a>
</li>
<li data-name="ol.source.WMTS#updateDimensions" class="unstable">
<a href="ol.source.WMTS.html#updateDimensions">updateDimensions</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.XYZ">
<span class="title">
<a href="ol.source.XYZ.html">ol.source.XYZ</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.XYZ#changed" class="unstable">
<a href="ol.source.XYZ.html#changed">changed</a>
</li>
<li data-name="ol.source.XYZ#dispatchEvent" class="unstable">
<a href="ol.source.XYZ.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.XYZ#get" class="">
<a href="ol.source.XYZ.html#get">get</a>
</li>
<li data-name="ol.source.XYZ#getAttributions" class="">
<a href="ol.source.XYZ.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.XYZ#getKeys" class="">
<a href="ol.source.XYZ.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.XYZ#getLogo" class="">
<a href="ol.source.XYZ.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.XYZ#getProjection" class="unstable">
<a href="ol.source.XYZ.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.XYZ#getProperties" class="">
<a href="ol.source.XYZ.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.XYZ#getRevision" class="unstable">
<a href="ol.source.XYZ.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.XYZ#getState" class="unstable">
<a href="ol.source.XYZ.html#getState">getState</a>
</li>
<li data-name="ol.source.XYZ#getTileGrid" class="">
<a href="ol.source.XYZ.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.XYZ#getTileLoadFunction" class="unstable">
<a href="ol.source.XYZ.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.XYZ#getTileUrlFunction" class="unstable">
<a href="ol.source.XYZ.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.XYZ#getUrls" class="unstable">
<a href="ol.source.XYZ.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.XYZ#on" class="">
<a href="ol.source.XYZ.html#on">on</a>
</li>
<li data-name="ol.source.XYZ#once" class="">
<a href="ol.source.XYZ.html#once">once</a>
</li>
<li data-name="ol.source.XYZ#refresh" class="unstable">
<a href="ol.source.XYZ.html#refresh">refresh</a>
</li>
<li data-name="ol.source.XYZ#set" class="">
<a href="ol.source.XYZ.html#set">set</a>
</li>
<li data-name="ol.source.XYZ#setAttributions" class="unstable">
<a href="ol.source.XYZ.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.XYZ#setProperties" class="">
<a href="ol.source.XYZ.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.XYZ#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.XYZ.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.XYZ#setTileGridForProjection" class="unstable">
<a href="ol.source.XYZ.html#setTileGridForProjection">setTileGridForProjection</a>
</li>
<li data-name="ol.source.XYZ#setTileLoadFunction" class="unstable">
<a href="ol.source.XYZ.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.XYZ#setTileUrlFunction" class="unstable">
<a href="ol.source.XYZ.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.XYZ#setUrl" class="">
<a href="ol.source.XYZ.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.XYZ#setUrls" class="">
<a href="ol.source.XYZ.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.XYZ#un" class="">
<a href="ol.source.XYZ.html#un">un</a>
</li>
<li data-name="ol.source.XYZ#unByKey" class="">
<a href="ol.source.XYZ.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.XYZ#unset" class="">
<a href="ol.source.XYZ.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Zoomify">
<span class="title">
<a href="ol.source.Zoomify.html">ol.source.Zoomify</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Zoomify#changed" class="unstable">
<a href="ol.source.Zoomify.html#changed">changed</a>
</li>
<li data-name="ol.source.Zoomify#dispatchEvent" class="unstable">
<a href="ol.source.Zoomify.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.Zoomify#get" class="">
<a href="ol.source.Zoomify.html#get">get</a>
</li>
<li data-name="ol.source.Zoomify#getAttributions" class="">
<a href="ol.source.Zoomify.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Zoomify#getKeys" class="">
<a href="ol.source.Zoomify.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.Zoomify#getLogo" class="">
<a href="ol.source.Zoomify.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Zoomify#getProjection" class="unstable">
<a href="ol.source.Zoomify.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Zoomify#getProperties" class="">
<a href="ol.source.Zoomify.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.Zoomify#getRevision" class="unstable">
<a href="ol.source.Zoomify.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Zoomify#getState" class="unstable">
<a href="ol.source.Zoomify.html#getState">getState</a>
</li>
<li data-name="ol.source.Zoomify#getTileGrid" class="">
<a href="ol.source.Zoomify.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.Zoomify#getTileLoadFunction" class="unstable">
<a href="ol.source.Zoomify.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.Zoomify#getTileUrlFunction" class="unstable">
<a href="ol.source.Zoomify.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.Zoomify#getUrls" class="unstable">
<a href="ol.source.Zoomify.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.Zoomify#on" class="">
<a href="ol.source.Zoomify.html#on">on</a>
</li>
<li data-name="ol.source.Zoomify#once" class="">
<a href="ol.source.Zoomify.html#once">once</a>
</li>
<li data-name="ol.source.Zoomify#refresh" class="unstable">
<a href="ol.source.Zoomify.html#refresh">refresh</a>
</li>
<li data-name="ol.source.Zoomify#set" class="">
<a href="ol.source.Zoomify.html#set">set</a>
</li>
<li data-name="ol.source.Zoomify#setAttributions" class="unstable">
<a href="ol.source.Zoomify.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.Zoomify#setProperties" class="">
<a href="ol.source.Zoomify.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Zoomify#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.Zoomify.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.Zoomify#setTileGridForProjection" class="unstable">
<a href="ol.source.Zoomify.html#setTileGridForProjection">setTileGridForProjection</a>
</li>
<li data-name="ol.source.Zoomify#setTileLoadFunction" class="unstable">
<a href="ol.source.Zoomify.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.Zoomify#setTileUrlFunction" class="unstable">
<a href="ol.source.Zoomify.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.Zoomify#setUrl" class="">
<a href="ol.source.Zoomify.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.Zoomify#setUrls" class="">
<a href="ol.source.Zoomify.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.Zoomify#un" class="">
<a href="ol.source.Zoomify.html#un">un</a>
</li>
<li data-name="ol.source.Zoomify#unByKey" class="">
<a href="ol.source.Zoomify.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.Zoomify#unset" class="">
<a href="ol.source.Zoomify.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.wms">
<span class="title">
<a href="ol.source.wms.html">ol.source.wms</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.source.wms.ServerType" class="unstable">
<a href="ol.source.wms.html#.ServerType">ServerType</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style">
<span class="title">
<a href="ol.style.html">ol.style</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.style.GeometryFunction" class="unstable">
<a href="ol.style.html#.GeometryFunction">GeometryFunction</a>
</li>
<li data-name="ol.style.IconAnchorUnits" class="unstable">
<a href="ol.style.html#.IconAnchorUnits">IconAnchorUnits</a>
</li>
<li data-name="ol.style.IconOrigin" class="unstable">
<a href="ol.style.html#.IconOrigin">IconOrigin</a>
</li>
<li data-name="ol.style.StyleFunction" class="unstable">
<a href="ol.style.html#.StyleFunction">StyleFunction</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.AtlasManager">
<span class="title">
<a href="ol.style.AtlasManager.html">ol.style.AtlasManager</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.Circle">
<span class="title">
<a href="ol.style.Circle.html">ol.style.Circle</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Circle#getFill" class="unstable">
<a href="ol.style.Circle.html#getFill">getFill</a>
</li>
<li data-name="ol.style.Circle#getImage" class="unstable">
<a href="ol.style.Circle.html#getImage">getImage</a>
</li>
<li data-name="ol.style.Circle#getOpacity" class="unstable">
<a href="ol.style.Circle.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.style.Circle#getRadius" class="unstable">
<a href="ol.style.Circle.html#getRadius">getRadius</a>
</li>
<li data-name="ol.style.Circle#getRotateWithView" class="unstable">
<a href="ol.style.Circle.html#getRotateWithView">getRotateWithView</a>
</li>
<li data-name="ol.style.Circle#getRotation" class="unstable">
<a href="ol.style.Circle.html#getRotation">getRotation</a>
</li>
<li data-name="ol.style.Circle#getScale" class="unstable">
<a href="ol.style.Circle.html#getScale">getScale</a>
</li>
<li data-name="ol.style.Circle#getSnapToPixel" class="unstable">
<a href="ol.style.Circle.html#getSnapToPixel">getSnapToPixel</a>
</li>
<li data-name="ol.style.Circle#getStroke" class="unstable">
<a href="ol.style.Circle.html#getStroke">getStroke</a>
</li>
<li data-name="ol.style.Circle#setOpacity" class="unstable">
<a href="ol.style.Circle.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.style.Circle#setRotation" class="unstable">
<a href="ol.style.Circle.html#setRotation">setRotation</a>
</li>
<li data-name="ol.style.Circle#setScale" class="unstable">
<a href="ol.style.Circle.html#setScale">setScale</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.Fill">
<span class="title">
<a href="ol.style.Fill.html">ol.style.Fill</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Fill#getColor" class="unstable">
<a href="ol.style.Fill.html#getColor">getColor</a>
</li>
<li data-name="ol.style.Fill#setColor" class="unstable">
<a href="ol.style.Fill.html#setColor">setColor</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.Icon">
<span class="title">
<a href="ol.style.Icon.html">ol.style.Icon</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Icon#getAnchor" class="unstable">
<a href="ol.style.Icon.html#getAnchor">getAnchor</a>
</li>
<li data-name="ol.style.Icon#getImage" class="unstable">
<a href="ol.style.Icon.html#getImage">getImage</a>
</li>
<li data-name="ol.style.Icon#getOpacity" class="unstable">
<a href="ol.style.Icon.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.style.Icon#getOrigin" class="unstable">
<a href="ol.style.Icon.html#getOrigin">getOrigin</a>
</li>
<li data-name="ol.style.Icon#getRotateWithView" class="unstable">
<a href="ol.style.Icon.html#getRotateWithView">getRotateWithView</a>
</li>
<li data-name="ol.style.Icon#getRotation" class="unstable">
<a href="ol.style.Icon.html#getRotation">getRotation</a>
</li>
<li data-name="ol.style.Icon#getScale" class="unstable">
<a href="ol.style.Icon.html#getScale">getScale</a>
</li>
<li data-name="ol.style.Icon#getSize" class="unstable">
<a href="ol.style.Icon.html#getSize">getSize</a>
</li>
<li data-name="ol.style.Icon#getSnapToPixel" class="unstable">
<a href="ol.style.Icon.html#getSnapToPixel">getSnapToPixel</a>
</li>
<li data-name="ol.style.Icon#getSrc" class="unstable">
<a href="ol.style.Icon.html#getSrc">getSrc</a>
</li>
<li data-name="ol.style.Icon#load" class="unstable">
<a href="ol.style.Icon.html#load">load</a>
</li>
<li data-name="ol.style.Icon#setOpacity" class="unstable">
<a href="ol.style.Icon.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.style.Icon#setRotation" class="unstable">
<a href="ol.style.Icon.html#setRotation">setRotation</a>
</li>
<li data-name="ol.style.Icon#setScale" class="unstable">
<a href="ol.style.Icon.html#setScale">setScale</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.Image">
<span class="title">
<a href="ol.style.Image.html">ol.style.Image</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Image#getOpacity" class="unstable">
<a href="ol.style.Image.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.style.Image#getRotateWithView" class="unstable">
<a href="ol.style.Image.html#getRotateWithView">getRotateWithView</a>
</li>
<li data-name="ol.style.Image#getRotation" class="unstable">
<a href="ol.style.Image.html#getRotation">getRotation</a>
</li>
<li data-name="ol.style.Image#getScale" class="unstable">
<a href="ol.style.Image.html#getScale">getScale</a>
</li>
<li data-name="ol.style.Image#getSnapToPixel" class="unstable">
<a href="ol.style.Image.html#getSnapToPixel">getSnapToPixel</a>
</li>
<li data-name="ol.style.Image#setOpacity" class="unstable">
<a href="ol.style.Image.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.style.Image#setRotation" class="unstable">
<a href="ol.style.Image.html#setRotation">setRotation</a>
</li>
<li data-name="ol.style.Image#setScale" class="unstable">
<a href="ol.style.Image.html#setScale">setScale</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.RegularShape">
<span class="title">
<a href="ol.style.RegularShape.html">ol.style.RegularShape</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.RegularShape#getAnchor" class="unstable">
<a href="ol.style.RegularShape.html#getAnchor">getAnchor</a>
</li>
<li data-name="ol.style.RegularShape#getAngle" class="unstable">
<a href="ol.style.RegularShape.html#getAngle">getAngle</a>
</li>
<li data-name="ol.style.RegularShape#getFill" class="unstable">
<a href="ol.style.RegularShape.html#getFill">getFill</a>
</li>
<li data-name="ol.style.RegularShape#getImage" class="unstable">
<a href="ol.style.RegularShape.html#getImage">getImage</a>
</li>
<li data-name="ol.style.RegularShape#getOpacity" class="unstable">
<a href="ol.style.RegularShape.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.style.RegularShape#getOrigin" class="unstable">
<a href="ol.style.RegularShape.html#getOrigin">getOrigin</a>
</li>
<li data-name="ol.style.RegularShape#getPoints" class="unstable">
<a href="ol.style.RegularShape.html#getPoints">getPoints</a>
</li>
<li data-name="ol.style.RegularShape#getRadius" class="unstable">
<a href="ol.style.RegularShape.html#getRadius">getRadius</a>
</li>
<li data-name="ol.style.RegularShape#getRadius2" class="unstable">
<a href="ol.style.RegularShape.html#getRadius2">getRadius2</a>
</li>
<li data-name="ol.style.RegularShape#getRotateWithView" class="unstable">
<a href="ol.style.RegularShape.html#getRotateWithView">getRotateWithView</a>
</li>
<li data-name="ol.style.RegularShape#getRotation" class="unstable">
<a href="ol.style.RegularShape.html#getRotation">getRotation</a>
</li>
<li data-name="ol.style.RegularShape#getScale" class="unstable">
<a href="ol.style.RegularShape.html#getScale">getScale</a>
</li>
<li data-name="ol.style.RegularShape#getSize" class="unstable">
<a href="ol.style.RegularShape.html#getSize">getSize</a>
</li>
<li data-name="ol.style.RegularShape#getSnapToPixel" class="unstable">
<a href="ol.style.RegularShape.html#getSnapToPixel">getSnapToPixel</a>
</li>
<li data-name="ol.style.RegularShape#getStroke" class="unstable">
<a href="ol.style.RegularShape.html#getStroke">getStroke</a>
</li>
<li data-name="ol.style.RegularShape#setOpacity" class="unstable">
<a href="ol.style.RegularShape.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.style.RegularShape#setRotation" class="unstable">
<a href="ol.style.RegularShape.html#setRotation">setRotation</a>
</li>
<li data-name="ol.style.RegularShape#setScale" class="unstable">
<a href="ol.style.RegularShape.html#setScale">setScale</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.Stroke">
<span class="title">
<a href="ol.style.Stroke.html">ol.style.Stroke</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Stroke#getColor" class="unstable">
<a href="ol.style.Stroke.html#getColor">getColor</a>
</li>
<li data-name="ol.style.Stroke#getLineCap" class="unstable">
<a href="ol.style.Stroke.html#getLineCap">getLineCap</a>
</li>
<li data-name="ol.style.Stroke#getLineDash" class="unstable">
<a href="ol.style.Stroke.html#getLineDash">getLineDash</a>
</li>
<li data-name="ol.style.Stroke#getLineJoin" class="unstable">
<a href="ol.style.Stroke.html#getLineJoin">getLineJoin</a>
</li>
<li data-name="ol.style.Stroke#getMiterLimit" class="unstable">
<a href="ol.style.Stroke.html#getMiterLimit">getMiterLimit</a>
</li>
<li data-name="ol.style.Stroke#getWidth" class="unstable">
<a href="ol.style.Stroke.html#getWidth">getWidth</a>
</li>
<li data-name="ol.style.Stroke#setColor" class="unstable">
<a href="ol.style.Stroke.html#setColor">setColor</a>
</li>
<li data-name="ol.style.Stroke#setLineCap" class="unstable">
<a href="ol.style.Stroke.html#setLineCap">setLineCap</a>
</li>
<li data-name="ol.style.Stroke#setLineDash" class="unstable">
<a href="ol.style.Stroke.html#setLineDash">setLineDash</a>
</li>
<li data-name="ol.style.Stroke#setLineJoin" class="unstable">
<a href="ol.style.Stroke.html#setLineJoin">setLineJoin</a>
</li>
<li data-name="ol.style.Stroke#setMiterLimit" class="unstable">
<a href="ol.style.Stroke.html#setMiterLimit">setMiterLimit</a>
</li>
<li data-name="ol.style.Stroke#setWidth" class="unstable">
<a href="ol.style.Stroke.html#setWidth">setWidth</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.Style">
<span class="title">
<a href="ol.style.Style.html">ol.style.Style</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Style#getFill" class="unstable">
<a href="ol.style.Style.html#getFill">getFill</a>
</li>
<li data-name="ol.style.Style#getGeometry" class="unstable">
<a href="ol.style.Style.html#getGeometry">getGeometry</a>
</li>
<li data-name="ol.style.Style#getGeometryFunction" class="unstable">
<a href="ol.style.Style.html#getGeometryFunction">getGeometryFunction</a>
</li>
<li data-name="ol.style.Style#getImage" class="unstable">
<a href="ol.style.Style.html#getImage">getImage</a>
</li>
<li data-name="ol.style.Style#getStroke" class="unstable">
<a href="ol.style.Style.html#getStroke">getStroke</a>
</li>
<li data-name="ol.style.Style#getText" class="unstable">
<a href="ol.style.Style.html#getText">getText</a>
</li>
<li data-name="ol.style.Style#getZIndex" class="unstable">
<a href="ol.style.Style.html#getZIndex">getZIndex</a>
</li>
<li data-name="ol.style.Style#setGeometry" class="unstable">
<a href="ol.style.Style.html#setGeometry">setGeometry</a>
</li>
<li data-name="ol.style.Style#setZIndex" class="unstable">
<a href="ol.style.Style.html#setZIndex">setZIndex</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.Text">
<span class="title">
<a href="ol.style.Text.html">ol.style.Text</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Text#getFill" class="unstable">
<a href="ol.style.Text.html#getFill">getFill</a>
</li>
<li data-name="ol.style.Text#getFont" class="unstable">
<a href="ol.style.Text.html#getFont">getFont</a>
</li>
<li data-name="ol.style.Text#getOffsetX" class="unstable">
<a href="ol.style.Text.html#getOffsetX">getOffsetX</a>
</li>
<li data-name="ol.style.Text#getOffsetY" class="unstable">
<a href="ol.style.Text.html#getOffsetY">getOffsetY</a>
</li>
<li data-name="ol.style.Text#getRotation" class="unstable">
<a href="ol.style.Text.html#getRotation">getRotation</a>
</li>
<li data-name="ol.style.Text#getScale" class="unstable">
<a href="ol.style.Text.html#getScale">getScale</a>
</li>
<li data-name="ol.style.Text#getStroke" class="unstable">
<a href="ol.style.Text.html#getStroke">getStroke</a>
</li>
<li data-name="ol.style.Text#getText" class="unstable">
<a href="ol.style.Text.html#getText">getText</a>
</li>
<li data-name="ol.style.Text#getTextAlign" class="unstable">
<a href="ol.style.Text.html#getTextAlign">getTextAlign</a>
</li>
<li data-name="ol.style.Text#getTextBaseline" class="unstable">
<a href="ol.style.Text.html#getTextBaseline">getTextBaseline</a>
</li>
<li data-name="ol.style.Text#setFill" class="unstable">
<a href="ol.style.Text.html#setFill">setFill</a>
</li>
<li data-name="ol.style.Text#setFont" class="unstable">
<a href="ol.style.Text.html#setFont">setFont</a>
</li>
<li data-name="ol.style.Text#setOffsetX" class="unstable">
<a href="ol.style.Text.html#setOffsetX">setOffsetX</a>
</li>
<li data-name="ol.style.Text#setOffsetY" class="unstable">
<a href="ol.style.Text.html#setOffsetY">setOffsetY</a>
</li>
<li data-name="ol.style.Text#setRotation" class="unstable">
<a href="ol.style.Text.html#setRotation">setRotation</a>
</li>
<li data-name="ol.style.Text#setScale" class="unstable">
<a href="ol.style.Text.html#setScale">setScale</a>
</li>
<li data-name="ol.style.Text#setStroke" class="unstable">
<a href="ol.style.Text.html#setStroke">setStroke</a>
</li>
<li data-name="ol.style.Text#setText" class="unstable">
<a href="ol.style.Text.html#setText">setText</a>
</li>
<li data-name="ol.style.Text#setTextAlign" class="unstable">
<a href="ol.style.Text.html#setTextAlign">setTextAlign</a>
</li>
<li data-name="ol.style.Text#setTextBaseline" class="unstable">
<a href="ol.style.Text.html#setTextBaseline">setTextBaseline</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.tilegrid">
<span class="title">
<a href="ol.tilegrid.html">ol.tilegrid</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.tilegrid.createXYZ" class="unstable">
<a href="ol.tilegrid.html#.createXYZ">createXYZ</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.tilegrid.TileGrid">
<span class="title">
<a href="ol.tilegrid.TileGrid.html">ol.tilegrid.TileGrid</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.tilegrid.TileGrid#getMaxZoom" class="unstable">
<a href="ol.tilegrid.TileGrid.html#getMaxZoom">getMaxZoom</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getMinZoom" class="unstable">
<a href="ol.tilegrid.TileGrid.html#getMinZoom">getMinZoom</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getOrigin" class="">
<a href="ol.tilegrid.TileGrid.html#getOrigin">getOrigin</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getResolution" class="">
<a href="ol.tilegrid.TileGrid.html#getResolution">getResolution</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getResolutions" class="">
<a href="ol.tilegrid.TileGrid.html#getResolutions">getResolutions</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getTileCoordExtent" class="unstable">
<a href="ol.tilegrid.TileGrid.html#getTileCoordExtent">getTileCoordExtent</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getTileCoordForCoordAndResolution" class="unstable">
<a href="ol.tilegrid.TileGrid.html#getTileCoordForCoordAndResolution">getTileCoordForCoordAndResolution</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getTileCoordForCoordAndZ" class="unstable">
<a href="ol.tilegrid.TileGrid.html#getTileCoordForCoordAndZ">getTileCoordForCoordAndZ</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getTileSize" class="">
<a href="ol.tilegrid.TileGrid.html#getTileSize">getTileSize</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.tilegrid.WMTS">
<span class="title">
<a href="ol.tilegrid.WMTS.html">ol.tilegrid.WMTS</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.tilegrid.WMTS.createFromCapabilitiesMatrixSet" class="unstable">
<a href="ol.tilegrid.WMTS.html#.createFromCapabilitiesMatrixSet">createFromCapabilitiesMatrixSet</a>
</li>
<li data-name="ol.tilegrid.WMTS#getMatrixIds" class="unstable">
<a href="ol.tilegrid.WMTS.html#getMatrixIds">getMatrixIds</a>
</li>
<li data-name="ol.tilegrid.WMTS#getMaxZoom" class="unstable">
<a href="ol.tilegrid.WMTS.html#getMaxZoom">getMaxZoom</a>
</li>
<li data-name="ol.tilegrid.WMTS#getMinZoom" class="unstable">
<a href="ol.tilegrid.WMTS.html#getMinZoom">getMinZoom</a>
</li>
<li data-name="ol.tilegrid.WMTS#getOrigin" class="">
<a href="ol.tilegrid.WMTS.html#getOrigin">getOrigin</a>
</li>
<li data-name="ol.tilegrid.WMTS#getResolution" class="">
<a href="ol.tilegrid.WMTS.html#getResolution">getResolution</a>
</li>
<li data-name="ol.tilegrid.WMTS#getResolutions" class="">
<a href="ol.tilegrid.WMTS.html#getResolutions">getResolutions</a>
</li>
<li data-name="ol.tilegrid.WMTS#getTileCoordExtent" class="unstable">
<a href="ol.tilegrid.WMTS.html#getTileCoordExtent">getTileCoordExtent</a>
</li>
<li data-name="ol.tilegrid.WMTS#getTileCoordForCoordAndResolution" class="unstable">
<a href="ol.tilegrid.WMTS.html#getTileCoordForCoordAndResolution">getTileCoordForCoordAndResolution</a>
</li>
<li data-name="ol.tilegrid.WMTS#getTileCoordForCoordAndZ" class="unstable">
<a href="ol.tilegrid.WMTS.html#getTileCoordForCoordAndZ">getTileCoordForCoordAndZ</a>
</li>
<li data-name="ol.tilegrid.WMTS#getTileSize" class="">
<a href="ol.tilegrid.WMTS.html#getTileSize">getTileSize</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.webgl.Context">
<span class="title">
<a href="ol.webgl.Context.html">ol.webgl.Context</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.webgl.Context#getGL" class="unstable">
<a href="ol.webgl.Context.html#getGL">getGL</a>
</li>
<li data-name="ol.webgl.Context#useProgram" class="unstable">
<a href="ol.webgl.Context.html#useProgram">useProgram</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
</ul>
</div>
<div class="main">
<h1 class="page-title" data-filename="ol.source.Source.html">Class: Source</h1>
<section>
<header>
<h2>
<span class="ancestors"><a href="ol.html">ol</a><a href="ol.source.html">.source</a>.</span>Source
</h2>
<div class="class-description"><p>Abstract base class; normally only used for creating subclasses and not
instantiated in apps.
Base class for <a href="ol.layer.Layer.html"><code>ol.layer.Layer</code></a> sources.</p>
<p>A generic <code>change</code> event is triggered when the state of the source changes.</p></div>
</header>
<article>
<div class="container-overview">
<dt class="">
<div class="nameContainer">
<h4 class="name" id="Source">
new ol.source.Source<span class="signature">(options)</span>
</h4>
<div class="tag-source">
src/ol/source/source.js, line 46
</div>
</div>
</dt>
<dd class="">
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>options</code></td>
<td class="type">
<span class="param-type">ol.source.SourceOptions</span>
</td>
<td class="description last">
<p>Source options.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
<h5>Fires:</h5>
<ul>
<li class="unstable">
<code>change</code>
<span class="stability experimental">experimental</span>
-
Triggered when the revision counter is increased.
</li>
<li class="">
<code><a href="ol.ObjectEvent.html#event:propertychange">propertychange</a></code>
(<a href="ol.ObjectEvent.html">ol.ObjectEvent</a>)
-
Triggered when a property is changed.
</li>
</ul>
</dd>
</div>
<h3 class="subsection-title">Subclasses</h3>
<ul>
<li><a href="ol.source.Image.html">ol.source.Image</a>
</li>
<li><a href="ol.source.Tile.html">ol.source.Tile</a>
</li>
<li><a href="ol.source.Vector.html">ol.source.Vector</a>
</li>
</ul>
<h3 class="subsection-title">Extends</h3>
<ul>
<li><a href="ol.Object.html">ol.Object</a></li>
</ul>
<h3 class="subsection-title">Methods</h3>
<dl>
<dt class="unstable">
<div class="nameContainer inherited">
<h4 class="name" id="changed">
changed<span class="signature">()</span>
<span class="inherited"><a href="ol.Observable.html#changed">inherited</a></span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/observable.js, line 57
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Increases the revision counter and dispatches a 'change' event.</p>
</div>
<dl class="details">
</dl>
</dd>
<dt class="unstable">
<div class="nameContainer inherited">
<h4 class="name" id="dispatchEvent">
dispatchEvent<span class="signature">(event)</span>
<span class="inherited"><a href="ol.Observable.html#dispatchEvent">inherited</a></span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/observable.js, line 81
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Dispatches an event and calls all listeners listening for events
of this type. The event parameter can either be a string or an
Object with a <code>type</code> property.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>event</code></td>
<td class="type">
<span class="param-type">Object</span>
|
<span class="param-type"><a href="ol.events.Event.html">ol.events.Event</a></span>
|
<span class="param-type">string</span>
</td>
<td class="description last">
<p>Event object.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="get">
get<span class="signature">(key)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{*}</span>
<span class="inherited"><a href="ol.Object.html#get">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/object.js, line 148
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Gets a value.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>key</code></td>
<td class="type">
<span class="param-type">string</span>
</td>
<td class="description last">
<p>Key name.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
<h5>Returns:</h5>
Value.
<br />
</dd>
<dt class="">
<div class="nameContainer">
<h4 class="name" id="getAttributions">
getAttributions<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Array.<<a href="ol.Attribution.html">ol.Attribution</a>>}</span>
</h4>
<div class="tag-source">
src/ol/source/source.js, line 134
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Get the attributions of the source.</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
Attributions.
<br />
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="getKeys">
getKeys<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Array.<string>}</span>
<span class="inherited"><a href="ol.Object.html#getKeys">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/object.js, line 162
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Get a list of object property names.</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
List of property names.
<br />
</dd>
<dt class="">
<div class="nameContainer">
<h4 class="name" id="getLogo">
getLogo<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{string|<a href="olx.html#.LogoOptions">olx.LogoOptions</a>|undefined}</span>
</h4>
<div class="tag-source">
src/ol/source/source.js, line 144
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Get the logo of the source.</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
Logo.
<br />
</dd>
<dt class="unstable">
<div class="nameContainer">
<h4 class="name" id="getProjection">
getProjection<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{<a href="ol.proj.Projection.html">ol.proj.Projection</a>}</span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/source/source.js, line 154
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Get the projection of the source.</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
Projection.
<br />
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="getProperties">
getProperties<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Object.<string, *>}</span>
<span class="inherited"><a href="ol.Object.html#getProperties">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/object.js, line 172
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Get an object of all property names and values.</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
Object.
<br />
</dd>
<dt class="unstable">
<div class="nameContainer inherited">
<h4 class="name" id="getRevision">
getRevision<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{number}</span>
<span class="inherited"><a href="ol.Observable.html#getRevision">inherited</a></span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/observable.js, line 90
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Get the version number for this object. Each time the object is modified,
its version number will be incremented.</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
Revision.
<br />
</dd>
<dt class="unstable">
<div class="nameContainer">
<h4 class="name" id="getState">
getState<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{<a href="ol.source.html#.State">ol.source.State</a>}</span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/source/source.js, line 170
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Get the state of the source, see <a href="ol.source.html#.State"><code>ol.source.State</code></a> for possible states.</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
State.
<br />
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="on">
on<span class="signature">(type, listener, <span class="optional">opt_this</span>)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{<a href="ol.events.html#.Key">ol.events.Key</a>|Array.<<a href="ol.events.html#.Key">ol.events.Key</a>>}</span>
<span class="inherited"><a href="ol.Observable.html#on">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/observable.js, line 105
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Listen for a certain type of event.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>type</code></td>
<td class="type">
<span class="param-type">string</span>
|
<span class="param-type">Array.<string></span>
</td>
<td class="description last">
<p>The event type or array of event types.</p></td>
</tr>
<tr class="">
<td class="name"><code>listener</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last">
<p>The listener function.</p></td>
</tr>
<tr class="">
<td class="name"><code>this</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last">
<p>The object to use as <code>this</code> in <code>listener</code>.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
<h5>Returns:</h5>
Unique key for the listener. If
called with an array of event types as the first argument, the return
will be an array of keys.
<br />
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="once">
once<span class="signature">(type, listener, <span class="optional">opt_this</span>)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{<a href="ol.events.html#.Key">ol.events.Key</a>|Array.<<a href="ol.events.html#.Key">ol.events.Key</a>>}</span>
<span class="inherited"><a href="ol.Observable.html#once">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/observable.js, line 130
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Listen once for a certain type of event.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>type</code></td>
<td class="type">
<span class="param-type">string</span>
|
<span class="param-type">Array.<string></span>
</td>
<td class="description last">
<p>The event type or array of event types.</p></td>
</tr>
<tr class="">
<td class="name"><code>listener</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last">
<p>The listener function.</p></td>
</tr>
<tr class="">
<td class="name"><code>this</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last">
<p>The object to use as <code>this</code> in <code>listener</code>.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
<h5>Returns:</h5>
Unique key for the listener. If
called with an array of event types as the first argument, the return
will be an array of keys.
<br />
</dd>
<dt class="unstable">
<div class="nameContainer">
<h4 class="name" id="refresh">
refresh<span class="signature">()</span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/source/source.js, line 187
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Refreshes the source and finally dispatches a 'change' event.</p>
</div>
<dl class="details">
</dl>
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="set">
set<span class="signature">(key, value, <span class="optional">opt_silent</span>)</span>
<span class="inherited"><a href="ol.Object.html#set">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/object.js, line 197
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Sets a value.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>key</code></td>
<td class="type">
<span class="param-type">string</span>
</td>
<td class="description last">
<p>Key name.</p></td>
</tr>
<tr class="">
<td class="name"><code>value</code></td>
<td class="type">
<span class="param-type">*</span>
</td>
<td class="description last">
<p>Value.</p></td>
</tr>
<tr class="">
<td class="name"><code>silent</code></td>
<td class="type">
<span class="param-type">boolean</span>
</td>
<td class="description last">
<p>Update without triggering an event.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="unstable">
<div class="nameContainer">
<h4 class="name" id="setAttributions">
setAttributions<span class="signature">(attributions)</span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/source/source.js, line 199
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Set the attributions of the source.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>attributions</code></td>
<td colspan=2 class="description last">
<p>Attributions.
Can be passed as <code>string</code>, <code>Array<string></code>, <code><a href="ol.Attribution.html"><code>ol.Attribution</code></a></code>,
<code>Array<<a href="ol.Attribution.html"><code>ol.Attribution</code></a>></code> or <code>undefined</code>.</p>
<table class="params">
<thead>
<tr>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="setProperties">
setProperties<span class="signature">(values, <span class="optional">opt_silent</span>)</span>
<span class="inherited"><a href="ol.Object.html#setProperties">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/object.js, line 217
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Sets a collection of key-value pairs. Note that this changes any existing
properties and adds new ones (it does not remove any existing properties).</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>values</code></td>
<td class="type">
<span class="param-type">Object.<string, *></span>
</td>
<td class="description last">
<p>Values.</p></td>
</tr>
<tr class="">
<td class="name"><code>silent</code></td>
<td class="type">
<span class="param-type">boolean</span>
</td>
<td class="description last">
<p>Update without triggering an event.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="un">
un<span class="signature">(type, listener, <span class="optional">opt_this</span>)</span>
<span class="inherited"><a href="ol.Observable.html#un">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/observable.js, line 153
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Unlisten for a certain type of event.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>type</code></td>
<td class="type">
<span class="param-type">string</span>
|
<span class="param-type">Array.<string></span>
</td>
<td class="description last">
<p>The event type or array of event types.</p></td>
</tr>
<tr class="">
<td class="name"><code>listener</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last">
<p>The listener function.</p></td>
</tr>
<tr class="">
<td class="name"><code>this</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last">
<p>The object which was used as <code>this</code> by the
<code>listener</code>.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="unByKey">
unByKey<span class="signature">(key)</span>
<span class="inherited"><a href="ol.Observable.html#unByKey">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/observable.js, line 174
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Removes an event listener using the key returned by <code>on()</code> or <code>once()</code>.
Note that using the <a href="ol.Observable.html#.unByKey"><code>ol.Observable.unByKey</code></a> static function is to
be preferred.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>key</code></td>
<td class="type">
<span class="param-type"><a href="ol.events.html#.Key">ol.events.Key</a></span>
|
<span class="param-type">Array.<<a href="ol.events.html#.Key">ol.events.Key</a>></span>
</td>
<td class="description last">
<p>The key returned by <code>on()</code>
or <code>once()</code> (or an array of keys).</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="unset">
unset<span class="signature">(key, <span class="optional">opt_silent</span>)</span>
<span class="inherited"><a href="ol.Object.html#unset">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/object.js, line 231
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Unsets a property.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>key</code></td>
<td class="type">
<span class="param-type">string</span>
</td>
<td class="description last">
<p>Key name.</p></td>
</tr>
<tr class="">
<td class="name"><code>silent</code></td>
<td class="type">
<span class="param-type">boolean</span>
</td>
<td class="description last">
<p>Unset without triggering an event.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
</dl>
</article>
</section>
</div>
</div>
<script>prettyPrint();</script>
<script src="scripts/linenumber.js"></script>
<script src="scripts/main.js"></script>
</body>
</html> |
node_modules/grunt-contrib-compress/node_modules/stream-buffers/coverage/lcov-report/lib/index.html | as110/as110.github.io | <head>
<title>Code coverage report for lib/</title>
<meta charset="utf-8">
<link rel="stylesheet" href="../prettify.css">
<link rel="stylesheet" href="../base.css">
<style type="text/css">
div.coverage-summary .sorter {
background-image: url(../sort-arrow-sprite.png);
}
</style>
</head>
<body>
<div class="header high">
<h1>Code coverage report for <span class="entity">lib/</span></h1>
<h2>
Statements: <span class="metric">98.01% <small>(148 / 151)</small></span>
Branches: <span class="metric">92.94% <small>(79 / 85)</small></span>
Functions: <span class="metric">100% <small>(20 / 20)</small></span>
Lines: <span class="metric">99.31% <small>(143 / 144)</small></span>
Ignored: <span class="metric"><span class="ignore-none">none</span></span>
</h2>
<div class="path"><a href="../">All files</a> » lib/</div>
</div>
<div class="body">
<div class="coverage-summary">
<table>
<thead>
<tr>
<th data-col="file" data-fmt="html" data-html="true" class="file">File</th>
<th data-col="pic" data-type="number" data-fmt="html" data-html="true" class="pic"></th>
<th data-col="statements" data-type="number" data-fmt="pct" class="pct">Statements</th>
<th data-col="statements_raw" data-type="number" data-fmt="html" class="abs"></th>
<th data-col="branches" data-type="number" data-fmt="pct" class="pct">Branches</th>
<th data-col="branches_raw" data-type="number" data-fmt="html" class="abs"></th>
<th data-col="functions" data-type="number" data-fmt="pct" class="pct">Functions</th>
<th data-col="functions_raw" data-type="number" data-fmt="html" class="abs"></th>
<th data-col="lines" data-type="number" data-fmt="pct" class="pct">Lines</th>
<th data-col="lines_raw" data-type="number" data-fmt="html" class="abs"></th>
</tr>
</thead>
<tbody><tr>
<td class="file high" data-value="constants.js"><a href="constants.js.html">constants.js</a></td>
<td data-value="100" class="pic high"><span class="cover-fill cover-full" style="width: 100px;"></span><span class="cover-empty" style="width:0px;"></span></td>
<td data-value="100" class="pct high">100%</td>
<td data-value="1" class="abs high">(1 / 1)</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="0" class="abs high">(0 / 0)</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="0" class="abs high">(0 / 0)</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="1" class="abs high">(1 / 1)</td>
</tr>
<tr>
<td class="file high" data-value="readable_streambuffer.js"><a href="readable_streambuffer.js.html">readable_streambuffer.js</a></td>
<td data-value="98.82" class="pic high"><span class="cover-fill" style="width: 98px;"></span><span class="cover-empty" style="width:2px;"></span></td>
<td data-value="98.82" class="pct high">98.82%</td>
<td data-value="85" class="abs high">(84 / 85)</td>
<td data-value="94.34" class="pct high">94.34%</td>
<td data-value="53" class="abs high">(50 / 53)</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="11" class="abs high">(11 / 11)</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="83" class="abs high">(83 / 83)</td>
</tr>
<tr>
<td class="file high" data-value="streambuffer.js"><a href="streambuffer.js.html">streambuffer.js</a></td>
<td data-value="100" class="pic high"><span class="cover-fill cover-full" style="width: 100px;"></span><span class="cover-empty" style="width:0px;"></span></td>
<td data-value="100" class="pct high">100%</td>
<td data-value="3" class="abs high">(3 / 3)</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="0" class="abs high">(0 / 0)</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="0" class="abs high">(0 / 0)</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="3" class="abs high">(3 / 3)</td>
</tr>
<tr>
<td class="file high" data-value="writable_streambuffer.js"><a href="writable_streambuffer.js.html">writable_streambuffer.js</a></td>
<td data-value="96.77" class="pic high"><span class="cover-fill" style="width: 96px;"></span><span class="cover-empty" style="width:4px;"></span></td>
<td data-value="96.77" class="pct high">96.77%</td>
<td data-value="62" class="abs high">(60 / 62)</td>
<td data-value="90.63" class="pct high">90.63%</td>
<td data-value="32" class="abs high">(29 / 32)</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="9" class="abs high">(9 / 9)</td>
<td data-value="98.25" class="pct high">98.25%</td>
<td data-value="57" class="abs high">(56 / 57)</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="footer">
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Wed Jul 01 2015 04:16:19 GMT+0000 (UTC)</div>
</div>
<script src="../prettify.js"></script>
<script>
window.onload = function () {
if (typeof prettyPrint === 'function') {
prettyPrint();
}
};
</script>
<script src="../sorter.js"></script>
</body>
|
public/data/assets/play/android.html | Bingle-labake/coollive.com.cn | <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ckplayerʾ</title>
</head>
<body>
<div id="a1">
<video width="640" height="360"
autoplay controls autobuffer
src="http://live.labake.cn:8888/live/ble.m3u8"
type="application/vnd.apple.mpegurl">
</video>
</div>
</body>
</html>
|
assets/css/base/reset.css | zirafa/pushtape-cassette | /* Eric Meyer Reset */
html, body, div {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
font: inherit;
}
h1, h2, h3, h4, h5, h6 {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
font: inherit;
font-weight: bold;
}
a, p, ul, ol, li, img, span, strong, em {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
font: inherit;
}
table, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
font: inherit;
}
applet, object, iframe, blockquote, pre, abbr, acronym, address, big, cite, code,
del, dfn, font, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, caption, fieldset, form, label, legend {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
font: inherit;
}
article, aside, figure, footer, header, hgroup, section {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
font: inherit;
}
canvas, details, embed, figcaption, menu, nav, output, ruby, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
b,
strong {
font-weight: bold;
}
em,
i {
font-style: italic;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
/* remember to define focus styles! */
:focus {
outline: 0;
}
/* remember to highlight inserts somehow! */
ins {
text-decoration: none;
}
del {
text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
border-collapse: collapse;
border-spacing: 0;
} |
content/2016-03.html | twhyderabad/geeknight | ---
start: 2016-03-02 13:00
edition: 12
participate: "http://www.eventbrite.com/e/rocketscience-yes-it-is-really-rocket-science-tickets-22091063967?aff=website"
subheader: "<b>Rocket Science</b>"
subnote: "Yes! it is really Rocket Science."
talk :
agenda:
-
time: "6:15 p.m - 6:30 p.m"
title: "Registration"
-
time: "6:30 p.m - 8:30 p.m"
title: "Overview of Indian Space Program"
speaker: "Dr. Narayana Katuru, Ex-Director, Satish Dhawan Space Center, SHAR, Sriharikota, 1999 - 2005. Padmashri in 2002. Currently Co-Chairman of Mission Readiness Review Committee for PSLV and GSLV."
---
|
app/zn/admin/fragments/userprofile/list.html | prthan/zinger | <div ng-controller='ViewContentCtrl-userprofiles' class="zn-view">
<div class="zn-view-header">
<div class="zn-fr">
<a href='#Search' class='zn-btn-icn' title="Search" zn-action="showSearchDialog"><i class="fa fa-search"></i></a>
<!--a href='#Sort' class='zn-btn-icn' title="Sort" zn-action="showSearchDialog"><i class="fa fa-sort-amount-asc"></i></a-->
<a href="#Add" title="Add" class="zn-btn-icn" zn-action="showAddDialog"><i class="fa fa-plus"></i></a>
<a href="#Delete" title="Delete" class="zn-btn-icn" zn-action="showDeleteConfirmation"><i class="fa fa-trash-o"></i></a>
</div>
<div class="zn-view-title">User Profiles</div>
</div>
<div zn-dialog="search" data-html="fragments/userprofile/search-dialog.html">
</div>
<div zn-dialog="add" data-html="fragments/userprofile/add-dialog.html">
</div>
<div class="zn-view-body">
<div class="zn-card all-items-list">
<!--div class="zn-card-header">
<div class="zn-card-toolbar">
<a href='#Filter' class='zn-btn-icn' title="Filter" zn-action="showSearchDialog"><i class="fa fa-filter"></i></a>
<a href='#Sort' class='zn-btn-icn' title="Sort" zn-action="showSearchDialog"><i class="fa fa-sort-amount-asc"></i></a>
</div>
<div class="zn-cb"></div>
</div-->
<div class="zn-card-body">
<div class="zn-info-message">
{{searchAttributes}}
</div>
<div class="zn-info-message" ng-show="allItemsList.length==0">
There are no items to show
</div>
<ul id="userprofiles-list" class="zn-list">
<li class="zn-list-item zn-list-item-inline" ng-repeat="item in allItemsList" data-key="{{item.oid}}" data-href="#!/userprofile/{{item.oid}}">
<div class="zn-list-item-cell">
<div class="zn-pp zn-pp-50">
<img ng-src="{{zn.config.app.urls.res}}/{{item.picture.sid}}"/>
</div>
</div>
<div class="zn-list-item-cell">
<div class="zn-list-item-sub-text">
{{item.userId}}
</div>
<div class="zn-list-item-main-text">
{{item.displayName}}
</div>
</div>
<div class="zn-list-item-selector"><i class="fa fa-check"></i></div>
</li>
</ul>
<div class="zn-more">
<a href="#More" zn-action="more" ng-if="listMore"><i class="fa fa-angle-double-down"></i></a>
</div>
</div>
</div>
<div class="zn-cb"></div>
</div>
</div>
|
Content/css/src/utilities/overrides/width.css | 06b/Falkner | /**
* Width utilities
*
*/
/* stylelint-disable declaration-no-important */
/** Mobile First width classes which can also be used in non-responsive design. */
/* Whole */
.u-width--one-whole
{
width: 100%;
}
/* Halves */
.u-width--one-half,
.u-width--two-quarters,
.u-width--three-sixths,
.u-width--four-eighths,
.u-width--five-tenths,
.u-width--six-twelfths
{
width: 50%;
}
/* Thirds */
.u-width--one-third,
.u-width--two-sixths,
.u-width--three-ninths,
.u-width--four-twelfths
{
width: 33.333%;
}
.u-width--two-thirds,
.u-width--four-sixths,
.u-width--six-ninths,
.u-width--eight-twelfths
{
width: 66.666%;
}
/* Quarters */
.u-width--one-quarter,
.u-width--two-eighths,
.u-width--three-twelfths
{
width: 25%;
}
.u-width--three-quarters,
.u-width--six-eighths,
.u-width--nine-twelfths
{
width: 75%;
}
/* Fifths */
.u-width--one-fifth,
.u-width--two-tenths
{
width: 20%;
}
.u-width--two-fifths,
.u-width--four-tenths
{
width: 40%;
}
.u-width--three-fifths,
.u-width--six-tenths
{
width: 60%;
}
.u-width--four-fifths,
.u-width--eight-tenths
{
width: 80%;
}
/* Sixths */
.u-width--one-sixth,
.u-width--two-twelfths
{
width: 16.666%;
}
.u-width--five-sixths,
.u-width--ten-twelfths
{
width: 83.333%;
}
/* Sevenths */
.u-width--one-seventh
{
width: 14.2857%;
}
.u-width--two-sevenths
{
width: 28.5714%;
}
.u-width--three-sevenths
{
width: 42.8571%;
}
.u-width--four-sevenths
{
width: 57.1428%;
}
.u-width--five-sevenths
{
width: 71.4285%;
}
.u-width--six-sevenths
{
width: 85.7142%;
}
/* Eighths */
.u-width--one-eighth
{
width: 12.5%;
}
.u-width--three-eighths
{
width: 37.5%;
}
.u-width--five-eighths
{
width: 62.5%;
}
.u-width--seven-eighths
{
width: 87.5%;
}
/* Ninths */
.u-width--one-ninth
{
width: 11.111%;
}
.u-width--two-ninths
{
width: 22.222%;
}
.u-width--four-ninths
{
width: 44.444%;
}
.u-width--five-ninths
{
width: 55.555%;
}
.u-width--seven-ninths
{
width: 77.777%;
}
.u-width--eight-ninths
{
width: 88.888%;
}
/* Tenths */
.u-width--one-tenth
{
width: 10%;
}
.u-width--three-tenths
{
width: 30%;
}
.u-width--seven-tenths
{
width: 70%;
}
.u-width--nine-tenths
{
width: 90%;
}
/* Elevenths */
.u-width--one-eleventh
{
width: 9.0909%;
}
.u-width--two-elevenths
{
width: 18.1818%;
}
.u-width--three-elevenths
{
width: 27.2727%;
}
.u-width--four-elevenths
{
width: 36.3636%;
}
.u-width--five-elevenths
{
width: 45.4545%;
}
.u-width--six-elevenths
{
width: 54.5454%;
}
.u-width--seven-elevenths
{
width: 63.6363%;
}
.u-width--eight-elevenths
{
width: 72.7272%;
}
.u-width--nine-elevenths
{
width: 81.8181%;
}
.u-width--ten-elevenths
{
width: 90.909%;
}
/* Twelfths */
.u-width--one-twelfth
{
width: 8.333%;
}
.u-width--five-twelfths
{
width: 41.666%;
}
.u-width--seven-twelfths
{
width: 58.333%;
}
.u-width--eleven-twelfths
{
width: 91.666%;
}
/** Our responsive classes, if we have enabled them. */
@media only screen and (max-width: 30em)
{ /* Begin phone-portrait-only modifier */
/* Whole */
.u-width--one-whole--phone-portrait-only
{
width: 100%;
}
/* Halves */
.u-width--one-half--phone-portrait-only,
.u-width--two-quarters--phone-portrait-only,
.u-width--three-sixths--phone-portrait-only,
.u-width--four-eighths--phone-portrait-only,
.u-width--five-tenths--phone-portrait-only,
.u-width--six-twelfths--phone-portrait-only
{
width: 50%;
}
/* Thirds */
.u-width--one-third--phone-portrait-only,
.u-width--two-sixths--phone-portrait-only,
.u-width--three-ninths--phone-portrait-only,
.u-width--four-twelfths--phone-portrait-only
{
width: 33.333%;
}
.u-width--two-thirds--phone-portrait-only,
.u-width--four-sixths--phone-portrait-only,
.u-width--six-ninths--phone-portrait-only,
.u-width--eight-twelfths--phone-portrait-only
{
width: 66.666%;
}
/* Quarters */
.u-width--one-quarter--phone-portrait-only,
.u-width--two-eighths--phone-portrait-only,
.u-width--three-twelfths--phone-portrait-only
{
width: 25%;
}
.u-width--three-quarters--phone-portrait-only,
.u-width--six-eighths--phone-portrait-only,
.u-width--nine-twelfths--phone-portrait-only
{
width: 75%;
}
/* Fifths */
.u-width--one-fifth--phone-portrait-only,
.u-width--two-tenths--phone-portrait-only
{
width: 20%;
}
.u-width--two-fifths--phone-portrait-only,
.u-width--four-tenths--phone-portrait-only
{
width: 40%;
}
.u-width--three-fifths--phone-portrait-only,
.u-width--six-tenths--phone-portrait-only
{
width: 60%;
}
.u-width--four-fifths--phone-portrait-only,
.u-width--eight-tenths--phone-portrait-only
{
width: 80%;
}
/* Sixths */
.u-width--one-sixth--phone-portrait-only,
.u-width--two-twelfths--phone-portrait-only
{
width: 16.666%;
}
.u-width--five-sixths--phone-portrait-only,
.u-width--ten-twelfths--phone-portrait-only
{
width: 83.333%;
}
/* Sevenths */
.u-width--one-seventh--phone-portrait-only
{
width: 14.2857%;
}
.u-width--two-sevenths--phone-portrait-only
{
width: 28.5714%;
}
.u-width--three-sevenths--phone-portrait-only
{
width: 42.8571%;
}
.u-width--four-sevenths--phone-portrait-only
{
width: 57.1428%;
}
.u-width--five-sevenths--phone-portrait-only
{
width: 71.4285%;
}
.u-width--six-sevenths--phone-portrait-only
{
width: 85.7142%;
}
/* Eighths */
.u-width--one-eighth--phone-portrait-only
{
width: 12.5%;
}
.u-width--three-eighths--phone-portrait-only
{
width: 37.5%;
}
.u-width--five-eighths--phone-portrait-only
{
width: 62.5%;
}
.u-width--seven-eighths--phone-portrait-only
{
width: 87.5%;
}
/* Ninths */
.u-width--one-ninth--phone-portrait-only
{
width: 11.111%;
}
.u-width--two-ninths--phone-portrait-only
{
width: 22.222%;
}
.u-width--four-ninths--phone-portrait-only
{
width: 44.444%;
}
.u-width--five-ninths--phone-portrait-only
{
width: 55.555%;
}
.u-width--seven-ninths--phone-portrait-only
{
width: 77.777%;
}
.u-width--eight-ninths--phone-portrait-only
{
width: 88.888%;
}
/* Tenths */
.u-width--one-tenth--phone-portrait-only
{
width: 10%;
}
.u-width--three-tenths--phone-portrait-only
{
width: 30%;
}
.u-width--seven-tenths--phone-portrait-only
{
width: 70%;
}
.u-width--nine-tenths--phone-portrait-only
{
width: 90%;
}
/* Elevenths */
.u-width--one-eleventh--phone-portrait-only
{
width: 9.0909%;
}
.u-width--two-elevenths--phone-portrait-only
{
width: 18.1818%;
}
.u-width--three-elevenths--phone-portrait-only
{
width: 27.2727%;
}
.u-width--four-elevenths--phone-portrait-only
{
width: 36.3636%;
}
.u-width--five-elevenths--phone-portrait-only
{
width: 45.4545%;
}
.u-width--six-elevenths--phone-portrait-only
{
width: 54.5454%;
}
.u-width--seven-elevenths--phone-portrait-only
{
width: 63.6363%;
}
.u-width--eight-elevenths--phone-portrait-only
{
width: 72.7272%;
}
.u-width--nine-elevenths--phone-portrait-only
{
width: 81.8181%;
}
.u-width--ten-elevenths--phone-portrait-only
{
width: 90.909%;
}
/* Twelfths */
.u-width--one-twelfth--phone-portrait-only
{
width: 8.333%;
}
.u-width--five-twelfths--phone-portrait-only
{
width: 41.666%;
}
.u-width--seven-twelfths--phone-portrait-only
{
width: 58.333%;
}
.u-width--eleven-twelfths--phone-portrait-only
{
width: 91.666%;
}
/* End phone-portrait-only modifier */
}
@media only screen and (min-width: 30em)
{ /* Begin phone-landscape-up modifier */
/* Whole */
.u-width--one-whole--phone-landscape-up
{
width: 100%;
}
/* Halves */
.u-width--one-half--phone-landscape-up,
.u-width--two-quarters--phone-landscape-up,
.u-width--three-sixths--phone-landscape-up,
.u-width--four-eighths--phone-landscape-up,
.u-width--five-tenths--phone-landscape-up,
.u-width--six-twelfths--phone-landscape-up
{
width: 50%;
}
/* Thirds */
.u-width--one-third--phone-landscape-up,
.u-width--two-sixths--phone-landscape-up,
.u-width--three-ninths--phone-landscape-up,
.u-width--four-twelfths--phone-landscape-up
{
width: 33.333%;
}
.u-width--two-thirds--phone-landscape-up,
.u-width--four-sixths--phone-landscape-up,
.u-width--six-ninths--phone-landscape-up,
.u-width--eight-twelfths--phone-landscape-up
{
width: 66.666%;
}
/* Quarters */
.u-width--one-quarter--phone-landscape-up,
.u-width--two-eighths--phone-landscape-up,
.u-width--three-twelfths--phone-landscape-up
{
width: 25%;
}
.u-width--three-quarters--phone-landscape-up,
.u-width--six-eighths--phone-landscape-up,
.u-width--nine-twelfths--phone-landscape-up
{
width: 75%;
}
/* Fifths */
.u-width--one-fifth--phone-landscape-up,
.u-width--two-tenths--phone-landscape-up
{
width: 20%;
}
.u-width--two-fifths--phone-landscape-up,
.u-width--four-tenths--phone-landscape-up
{
width: 40%;
}
.u-width--three-fifths--phone-landscape-up,
.u-width--six-tenths--phone-landscape-up
{
width: 60%;
}
.u-width--four-fifths--phone-landscape-up,
.u-width--eight-tenths--phone-landscape-up
{
width: 80%;
}
/* Sixths */
.u-width--one-sixth--phone-landscape-up,
.u-width--two-twelfths--phone-landscape-up
{
width: 16.666%;
}
.u-width--five-sixths--phone-landscape-up,
.u-width--ten-twelfths--phone-landscape-up
{
width: 83.333%;
}
/* Sevenths */
.u-width--one-seventh--phone-landscape-up
{
width: 14.2857%;
}
.u-width--two-sevenths--phone-landscape-up
{
width: 28.5714%;
}
.u-width--three-sevenths--phone-landscape-up
{
width: 42.8571%;
}
.u-width--four-sevenths--phone-landscape-up
{
width: 57.1428%;
}
.u-width--five-sevenths--phone-landscape-up
{
width: 71.4285%;
}
.u-width--six-sevenths--phone-landscape-up
{
width: 85.7142%;
}
/* Eighths */
.u-width--one-eighth--phone-landscape-up
{
width: 12.5%;
}
.u-width--three-eighths--phone-landscape-up
{
width: 37.5%;
}
.u-width--five-eighths--phone-landscape-up
{
width: 62.5%;
}
.u-width--seven-eighths--phone-landscape-up
{
width: 87.5%;
}
/* Ninths */
.u-width--one-ninth--phone-landscape-up
{
width: 11.111%;
}
.u-width--two-ninths--phone-landscape-up
{
width: 22.222%;
}
.u-width--four-ninths--phone-landscape-up
{
width: 44.444%;
}
.u-width--five-ninths--phone-landscape-up
{
width: 55.555%;
}
.u-width--seven-ninths--phone-landscape-up
{
width: 77.777%;
}
.u-width--eight-ninths--phone-landscape-up
{
width: 88.888%;
}
/* Tenths */
.u-width--one-tenth--phone-landscape-up
{
width: 10%;
}
.u-width--three-tenths--phone-landscape-up
{
width: 30%;
}
.u-width--seven-tenths--phone-landscape-up
{
width: 70%;
}
.u-width--nine-tenths--phone-landscape-up
{
width: 90%;
}
/* Elevenths */
.u-width--one-eleventh--phone-landscape-up
{
width: 9.0909%;
}
.u-width--two-elevenths--phone-landscape-up
{
width: 18.1818%;
}
.u-width--three-elevenths--phone-landscape-up
{
width: 27.2727%;
}
.u-width--four-elevenths--phone-landscape-up
{
width: 36.3636%;
}
.u-width--five-elevenths--phone-landscape-up
{
width: 45.4545%;
}
.u-width--six-elevenths--phone-landscape-up
{
width: 54.5454%;
}
.u-width--seven-elevenths--phone-landscape-up
{
width: 63.6363%;
}
.u-width--eight-elevenths--phone-landscape-up
{
width: 72.7272%;
}
.u-width--nine-elevenths--phone-landscape-up
{
width: 81.8181%;
}
.u-width--ten-elevenths--phone-landscape-up
{
width: 90.909%;
}
/* Twelfths */
.u-width--one-twelfth--phone-landscape-up
{
width: 8.333%;
}
.u-width--five-twelfths--phone-landscape-up
{
width: 41.666%;
}
.u-width--seven-twelfths--phone-landscape-up
{
width: 58.333%;
}
.u-width--eleven-twelfths--phone-landscape-up
{
width: 91.666%;
}
/* End phone-landscape-up modifier */
}
@media only screen and (min-width: 30em) and (max-width: 39.999375em)
{ /* Begin phone-landscape-only modifier */
/* Whole */
.u-width--one-whole--phone-landscape-only
{
width: 100%;
}
/* Halves */
.u-width--one-half--phone-landscape-only,
.u-width--two-quarters--phone-landscape-only,
.u-width--three-sixths--phone-landscape-only,
.u-width--four-eighths--phone-landscape-only,
.u-width--five-tenths--phone-landscape-only,
.u-width--six-twelfths--phone-landscape-only
{
width: 50%;
}
/* Thirds */
.u-width--one-third--phone-landscape-only,
.u-width--two-sixths--phone-landscape-only,
.u-width--three-ninths--phone-landscape-only,
.u-width--four-twelfths--phone-landscape-only
{
width: 33.333%;
}
.u-width--two-thirds--phone-landscape-only,
.u-width--four-sixths--phone-landscape-only,
.u-width--six-ninths--phone-landscape-only,
.u-width--eight-twelfths--phone-landscape-only
{
width: 66.666%;
}
/* Quarters */
.u-width--one-quarter--phone-landscape-only,
.u-width--two-eighths--phone-landscape-only,
.u-width--three-twelfths--phone-landscape-only
{
width: 25%;
}
.u-width--three-quarters--phone-landscape-only,
.u-width--six-eighths--phone-landscape-only,
.u-width--nine-twelfths--phone-landscape-only
{
width: 75%;
}
/* Fifths */
.u-width--one-fifth--phone-landscape-only,
.u-width--two-tenths--phone-landscape-only
{
width: 20%;
}
.u-width--two-fifths--phone-landscape-only,
.u-width--four-tenths--phone-landscape-only
{
width: 40%;
}
.u-width--three-fifths--phone-landscape-only,
.u-width--six-tenths--phone-landscape-only
{
width: 60%;
}
.u-width--four-fifths--phone-landscape-only,
.u-width--eight-tenths--phone-landscape-only
{
width: 80%;
}
/* Sixths */
.u-width--one-sixth--phone-landscape-only,
.u-width--two-twelfths--phone-landscape-only
{
width: 16.666%;
}
.u-width--five-sixths--phone-landscape-only,
.u-width--ten-twelfths--phone-landscape-only
{
width: 83.333%;
}
/* Sevenths */
.u-width--one-seventh--phone-landscape-only
{
width: 14.2857%;
}
.u-width--two-sevenths--phone-landscape-only
{
width: 28.5714%;
}
.u-width--three-sevenths--phone-landscape-only
{
width: 42.8571%;
}
.u-width--four-sevenths--phone-landscape-only
{
width: 57.1428%;
}
.u-width--five-sevenths--phone-landscape-only
{
width: 71.4285%;
}
.u-width--six-sevenths--phone-landscape-only
{
width: 85.7142%;
}
/* Eighths */
.u-width--one-eighth--phone-landscape-only
{
width: 12.5%;
}
.u-width--three-eighths--phone-landscape-only
{
width: 37.5%;
}
.u-width--five-eighths--phone-landscape-only
{
width: 62.5%;
}
.u-width--seven-eighths--phone-landscape-only
{
width: 87.5%;
}
/* Ninths */
.u-width--one-ninth--phone-landscape-only
{
width: 11.111%;
}
.u-width--two-ninths--phone-landscape-only
{
width: 22.222%;
}
.u-width--four-ninths--phone-landscape-only
{
width: 44.444%;
}
.u-width--five-ninths--phone-landscape-only
{
width: 55.555%;
}
.u-width--seven-ninths--phone-landscape-only
{
width: 77.777%;
}
.u-width--eight-ninths--phone-landscape-only
{
width: 88.888%;
}
/* Tenths */
.u-width--one-tenth--phone-landscape-only
{
width: 10%;
}
.u-width--three-tenths--phone-landscape-only
{
width: 30%;
}
.u-width--seven-tenths--phone-landscape-only
{
width: 70%;
}
.u-width--nine-tenths--phone-landscape-only
{
width: 90%;
}
/* Elevenths */
.u-width--one-eleventh--phone-landscape-only
{
width: 9.0909%;
}
.u-width--two-elevenths--phone-landscape-only
{
width: 18.1818%;
}
.u-width--three-elevenths--phone-landscape-only
{
width: 27.2727%;
}
.u-width--four-elevenths--phone-landscape-only
{
width: 36.3636%;
}
.u-width--five-elevenths--phone-landscape-only
{
width: 45.4545%;
}
.u-width--six-elevenths--phone-landscape-only
{
width: 54.5454%;
}
.u-width--seven-elevenths--phone-landscape-only
{
width: 63.6363%;
}
.u-width--eight-elevenths--phone-landscape-only
{
width: 72.7272%;
}
.u-width--nine-elevenths--phone-landscape-only
{
width: 81.8181%;
}
.u-width--ten-elevenths--phone-landscape-only
{
width: 90.909%;
}
/* Twelfths */
.u-width--one-twelfth--phone-landscape-only
{
width: 8.333%;
}
.u-width--five-twelfths--phone-landscape-only
{
width: 41.666%;
}
.u-width--seven-twelfths--phone-landscape-only
{
width: 58.333%;
}
.u-width--eleven-twelfths--phone-landscape-only
{
width: 91.666%;
}
/* End phone-landscape-only modifier */
}
@media only screen and (min-width: 40em)
{ /* Begin tablet-portrait-up modifier */
/* Whole */
.u-width--one-whole--tablet-portrait-up
{
width: 100%;
}
/* Halves */
.u-width--one-half--tablet-portrait-up,
.u-width--two-quarters--tablet-portrait-up,
.u-width--three-sixths--tablet-portrait-up,
.u-width--four-eighths--tablet-portrait-up,
.u-width--five-tenths--tablet-portrait-up,
.u-width--six-twelfths--tablet-portrait-up
{
width: 50%;
}
/* Thirds */
.u-width--one-third--tablet-portrait-up,
.u-width--two-sixths--tablet-portrait-up,
.u-width--three-ninths--tablet-portrait-up,
.u-width--four-twelfths--tablet-portrait-up
{
width: 33.333%;
}
.u-width--two-thirds--tablet-portrait-up,
.u-width--four-sixths--tablet-portrait-up,
.u-width--six-ninths--tablet-portrait-up,
.u-width--eight-twelfths--tablet-portrait-up
{
width: 66.666%;
}
/* Quarters */
.u-width--one-quarter--tablet-portrait-up,
.u-width--two-eighths--tablet-portrait-up,
.u-width--three-twelfths--tablet-portrait-up
{
width: 25%;
}
.u-width--three-quarters--tablet-portrait-up,
.u-width--six-eighths--tablet-portrait-up,
.u-width--nine-twelfths--tablet-portrait-up
{
width: 75%;
}
/* Fifths */
.u-width--one-fifth--tablet-portrait-up,
.u-width--two-tenths--tablet-portrait-up
{
width: 20%;
}
.u-width--two-fifths--tablet-portrait-up,
.u-width--four-tenths--tablet-portrait-up
{
width: 40%;
}
.u-width--three-fifths--tablet-portrait-up,
.u-width--six-tenths--tablet-portrait-up
{
width: 60%;
}
.u-width--four-fifths--tablet-portrait-up,
.u-width--eight-tenths--tablet-portrait-up
{
width: 80%;
}
/* Sixths */
.u-width--one-sixth--tablet-portrait-up,
.u-width--two-twelfths--tablet-portrait-up
{
width: 16.666%;
}
.u-width--five-sixths--tablet-portrait-up,
.u-width--ten-twelfths--tablet-portrait-up
{
width: 83.333%;
}
/* Sevenths */
.u-width--one-seventh--tablet-portrait-up
{
width: 14.2857%;
}
.u-width--two-sevenths--tablet-portrait-up
{
width: 28.5714%;
}
.u-width--three-sevenths--tablet-portrait-up
{
width: 42.8571%;
}
.u-width--four-sevenths--tablet-portrait-up
{
width: 57.1428%;
}
.u-width--five-sevenths--tablet-portrait-up
{
width: 71.4285%;
}
.u-width--six-sevenths--tablet-portrait-up
{
width: 85.7142%;
}
/* Eighths */
.u-width--one-eighth--tablet-portrait-up
{
width: 12.5%;
}
.u-width--three-eighths--tablet-portrait-up
{
width: 37.5%;
}
.u-width--five-eighths--tablet-portrait-up
{
width: 62.5%;
}
.u-width--seven-eighths--tablet-portrait-up
{
width: 87.5%;
}
/* Ninths */
.u-width--one-ninth--tablet-portrait-up
{
width: 11.111%;
}
.u-width--two-ninths--tablet-portrait-up
{
width: 22.222%;
}
.u-width--four-ninths--tablet-portrait-up
{
width: 44.444%;
}
.u-width--five-ninths--tablet-portrait-up
{
width: 55.555%;
}
.u-width--seven-ninths--tablet-portrait-up
{
width: 77.777%;
}
.u-width--eight-ninths--tablet-portrait-up
{
width: 88.888%;
}
/* Tenths */
.u-width--one-tenth--tablet-portrait-up
{
width: 10%;
}
.u-width--three-tenths--tablet-portrait-up
{
width: 30%;
}
.u-width--seven-tenths--tablet-portrait-up
{
width: 70%;
}
.u-width--nine-tenths--tablet-portrait-up
{
width: 90%;
}
/* Elevenths */
.u-width--one-eleventh--tablet-portrait-up
{
width: 9.0909%;
}
.u-width--two-elevenths--tablet-portrait-up
{
width: 18.1818%;
}
.u-width--three-elevenths--tablet-portrait-up
{
width: 27.2727%;
}
.u-width--four-elevenths--tablet-portrait-up
{
width: 36.3636%;
}
.u-width--five-elevenths--tablet-portrait-up
{
width: 45.4545%;
}
.u-width--six-elevenths--tablet-portrait-up
{
width: 54.5454%;
}
.u-width--seven-elevenths--tablet-portrait-up
{
width: 63.6363%;
}
.u-width--eight-elevenths--tablet-portrait-up
{
width: 72.7272%;
}
.u-width--nine-elevenths--tablet-portrait-up
{
width: 81.8181%;
}
.u-width--ten-elevenths--tablet-portrait-up
{
width: 90.909%;
}
/* Twelfths */
.u-width--one-twelfth--tablet-portrait-up
{
width: 8.333%;
}
.u-width--five-twelfths--tablet-portrait-up
{
width: 41.666%;
}
.u-width--seven-twelfths--tablet-portrait-up
{
width: 58.333%;
}
.u-width--eleven-twelfths--tablet-portrait-up
{
width: 91.666%;
}
/* End tablet-portrait-up modifier */
}
@media only screen and (min-width: 40em) and (max-width: 63.999375em)
{ /* Begin tablet-portrait-only modifier */
/* Whole */
.u-width--one-whole--tablet-portrait-only
{
width: 100%;
}
/* Halves */
.u-width--one-half--tablet-portrait-only,
.u-width--two-quarters--tablet-portrait-only,
.u-width--three-sixths--tablet-portrait-only,
.u-width--four-eighths--tablet-portrait-only,
.u-width--five-tenths--tablet-portrait-only,
.u-width--six-twelfths--tablet-portrait-only
{
width: 50%;
}
/* Thirds */
.u-width--one-third--tablet-portrait-only,
.u-width--two-sixths--tablet-portrait-only,
.u-width--three-ninths--tablet-portrait-only,
.u-width--four-twelfths--tablet-portrait-only
{
width: 33.333%;
}
.u-width--two-thirds--tablet-portrait-only,
.u-width--four-sixths--tablet-portrait-only,
.u-width--six-ninths--tablet-portrait-only,
.u-width--eight-twelfths--tablet-portrait-only
{
width: 66.666%;
}
/* Quarters */
.u-width--one-quarter--tablet-portrait-only,
.u-width--two-eighths--tablet-portrait-only,
.u-width--three-twelfths--tablet-portrait-only
{
width: 25%;
}
.u-width--three-quarters--tablet-portrait-only,
.u-width--six-eighths--tablet-portrait-only,
.u-width--nine-twelfths--tablet-portrait-only
{
width: 75%;
}
/* Fifths */
.u-width--one-fifth--tablet-portrait-only,
.u-width--two-tenths--tablet-portrait-only
{
width: 20%;
}
.u-width--two-fifths--tablet-portrait-only,
.u-width--four-tenths--tablet-portrait-only
{
width: 40%;
}
.u-width--three-fifths--tablet-portrait-only,
.u-width--six-tenths--tablet-portrait-only
{
width: 60%;
}
.u-width--four-fifths--tablet-portrait-only,
.u-width--eight-tenths--tablet-portrait-only
{
width: 80%;
}
/* Sixths */
.u-width--one-sixth--tablet-portrait-only,
.u-width--two-twelfths--tablet-portrait-only
{
width: 16.666%;
}
.u-width--five-sixths--tablet-portrait-only,
.u-width--ten-twelfths--tablet-portrait-only
{
width: 83.333%;
}
/* Sevenths */
.u-width--one-seventh--tablet-portrait-only
{
width: 14.2857%;
}
.u-width--two-sevenths--tablet-portrait-only
{
width: 28.5714%;
}
.u-width--three-sevenths--tablet-portrait-only
{
width: 42.8571%;
}
.u-width--four-sevenths--tablet-portrait-only
{
width: 57.1428%;
}
.u-width--five-sevenths--tablet-portrait-only
{
width: 71.4285%;
}
.u-width--six-sevenths--tablet-portrait-only
{
width: 85.7142%;
}
/* Eighths */
.u-width--one-eighth--tablet-portrait-only
{
width: 12.5%;
}
.u-width--three-eighths--tablet-portrait-only
{
width: 37.5%;
}
.u-width--five-eighths--tablet-portrait-only
{
width: 62.5%;
}
.u-width--seven-eighths--tablet-portrait-only
{
width: 87.5%;
}
/* Ninths */
.u-width--one-ninth--tablet-portrait-only
{
width: 11.111%;
}
.u-width--two-ninths--tablet-portrait-only
{
width: 22.222%;
}
.u-width--four-ninths--tablet-portrait-only
{
width: 44.444%;
}
.u-width--five-ninths--tablet-portrait-only
{
width: 55.555%;
}
.u-width--seven-ninths--tablet-portrait-only
{
width: 77.777%;
}
.u-width--eight-ninths--tablet-portrait-only
{
width: 88.888%;
}
/* Tenths */
.u-width--one-tenth--tablet-portrait-only
{
width: 10%;
}
.u-width--three-tenths--tablet-portrait-only
{
width: 30%;
}
.u-width--seven-tenths--tablet-portrait-only
{
width: 70%;
}
.u-width--nine-tenths--tablet-portrait-only
{
width: 90%;
}
/* Elevenths */
.u-width--one-eleventh--tablet-portrait-only
{
width: 9.0909%;
}
.u-width--two-elevenths--tablet-portrait-only
{
width: 18.1818%;
}
.u-width--three-elevenths--tablet-portrait-only
{
width: 27.2727%;
}
.u-width--four-elevenths--tablet-portrait-only
{
width: 36.3636%;
}
.u-width--five-elevenths--tablet-portrait-only
{
width: 45.4545%;
}
.u-width--six-elevenths--tablet-portrait-only
{
width: 54.5454%;
}
.u-width--seven-elevenths--tablet-portrait-only
{
width: 63.6363%;
}
.u-width--eight-elevenths--tablet-portrait-only
{
width: 72.7272%;
}
.u-width--nine-elevenths--tablet-portrait-only
{
width: 81.8181%;
}
.u-width--ten-elevenths--tablet-portrait-only
{
width: 90.909%;
}
/* Twelfths */
.u-width--one-twelfth--tablet-portrait-only
{
width: 8.333%;
}
.u-width--five-twelfths--tablet-portrait-only
{
width: 41.666%;
}
.u-width--seven-twelfths--tablet-portrait-only
{
width: 58.333%;
}
.u-width--eleven-twelfths--tablet-portrait-only
{
width: 91.666%;
}
/* End tablet-portrait-only modifier */
}
@media only screen and (min-width: 64em)
{ /* Begin tablet-landscape-up modifier */
/* Whole */
.u-width--one-whole--tablet-landscape-up
{
width: 100%;
}
/* Halves */
.u-width--one-half--tablet-landscape-up,
.u-width--two-quarters--tablet-landscape-up,
.u-width--three-sixths--tablet-landscape-up,
.u-width--four-eighths--tablet-landscape-up,
.u-width--five-tenths--tablet-landscape-up,
.u-width--six-twelfths--tablet-landscape-up
{
width: 50%;
}
/* Thirds */
.u-width--one-third--tablet-landscape-up,
.u-width--two-sixths--tablet-landscape-up,
.u-width--three-ninths--tablet-landscape-up,
.u-width--four-twelfths--tablet-landscape-up
{
width: 33.333%;
}
.u-width--two-thirds--tablet-landscape-up,
.u-width--four-sixths--tablet-landscape-up,
.u-width--six-ninths--tablet-landscape-up,
.u-width--eight-twelfths--tablet-landscape-up
{
width: 66.666%;
}
/* Quarters */
.u-width--one-quarter--tablet-landscape-up,
.u-width--two-eighths--tablet-landscape-up,
.u-width--three-twelfths--tablet-landscape-up
{
width: 25%;
}
.u-width--three-quarters--tablet-landscape-up,
.u-width--six-eighths--tablet-landscape-up,
.u-width--nine-twelfths--tablet-landscape-up
{
width: 75%;
}
/* Fifths */
.u-width--one-fifth--tablet-landscape-up,
.u-width--two-tenths--tablet-landscape-up
{
width: 20%;
}
.u-width--two-fifths--tablet-landscape-up,
.u-width--four-tenths--tablet-landscape-up
{
width: 40%;
}
.u-width--three-fifths--tablet-landscape-up,
.u-width--six-tenths--tablet-landscape-up
{
width: 60%;
}
.u-width--four-fifths--tablet-landscape-up,
.u-width--eight-tenths--tablet-landscape-up
{
width: 80%;
}
/* Sixths */
.u-width--one-sixth--tablet-landscape-up,
.u-width--two-twelfths--tablet-landscape-up
{
width: 16.666%;
}
.u-width--five-sixths--tablet-landscape-up,
.u-width--ten-twelfths--tablet-landscape-up
{
width: 83.333%;
}
/* Sevenths */
.u-width--one-seventh--tablet-landscape-up
{
width: 14.2857%;
}
.u-width--two-sevenths--tablet-landscape-up
{
width: 28.5714%;
}
.u-width--three-sevenths--tablet-landscape-up
{
width: 42.8571%;
}
.u-width--four-sevenths--tablet-landscape-up
{
width: 57.1428%;
}
.u-width--five-sevenths--tablet-landscape-up
{
width: 71.4285%;
}
.u-width--six-sevenths--tablet-landscape-up
{
width: 85.7142%;
}
/* Eighths */
.u-width--one-eighth--tablet-landscape-up
{
width: 12.5%;
}
.u-width--three-eighths--tablet-landscape-up
{
width: 37.5%;
}
.u-width--five-eighths--tablet-landscape-up
{
width: 62.5%;
}
.u-width--seven-eighths--tablet-landscape-up
{
width: 87.5%;
}
/* Ninths */
.u-width--one-ninth--tablet-landscape-up
{
width: 11.111%;
}
.u-width--two-ninths--tablet-landscape-up
{
width: 22.222%;
}
.u-width--four-ninths--tablet-landscape-up
{
width: 44.444%;
}
.u-width--five-ninths--tablet-landscape-up
{
width: 55.555%;
}
.u-width--seven-ninths--tablet-landscape-up
{
width: 77.777%;
}
.u-width--eight-ninths--tablet-landscape-up
{
width: 88.888%;
}
/* Tenths */
.u-width--one-tenth--tablet-landscape-up
{
width: 10%;
}
.u-width--three-tenths--tablet-landscape-up
{
width: 30%;
}
.u-width--seven-tenths--tablet-landscape-up
{
width: 70%;
}
.u-width--nine-tenths--tablet-landscape-up
{
width: 90%;
}
/* Elevenths */
.u-width--one-eleventh--tablet-landscape-up
{
width: 9.0909%;
}
.u-width--two-elevenths--tablet-landscape-up
{
width: 18.1818%;
}
.u-width--three-elevenths--tablet-landscape-up
{
width: 27.2727%;
}
.u-width--four-elevenths--tablet-landscape-up
{
width: 36.3636%;
}
.u-width--five-elevenths--tablet-landscape-up
{
width: 45.4545%;
}
.u-width--six-elevenths--tablet-landscape-up
{
width: 54.5454%;
}
.u-width--seven-elevenths--tablet-landscape-up
{
width: 63.6363%;
}
.u-width--eight-elevenths--tablet-landscape-up
{
width: 72.7272%;
}
.u-width--nine-elevenths--tablet-landscape-up
{
width: 81.8181%;
}
.u-width--ten-elevenths--tablet-landscape-up
{
width: 90.909%;
}
/* Twelfths */
.u-width--one-twelfth--tablet-landscape-up
{
width: 8.333%;
}
.u-width--five-twelfths--tablet-landscape-up
{
width: 41.666%;
}
.u-width--seven-twelfths--tablet-landscape-up
{
width: 58.333%;
}
.u-width--eleven-twelfths--tablet-landscape-up
{
width: 91.666%;
}
/* End tablet-landscape-up modifier */
}
@media only screen and (min-width: 64em) and (max-width: 79.999375em)
{ /* Begin tablet-landscape-only modifier */
/* Whole */
.u-width--one-whole--tablet-landscape-only
{
width: 100%;
}
/* Halves */
.u-width--one-half--tablet-landscape-only,
.u-width--two-quarters--tablet-landscape-only,
.u-width--three-sixths--tablet-landscape-only,
.u-width--four-eighths--tablet-landscape-only,
.u-width--five-tenths--tablet-landscape-only,
.u-width--six-twelfths--tablet-landscape-only
{
width: 50%;
}
/* Thirds */
.u-width--one-third--tablet-landscape-only,
.u-width--two-sixths--tablet-landscape-only,
.u-width--three-ninths--tablet-landscape-only,
.u-width--four-twelfths--tablet-landscape-only
{
width: 33.333%;
}
.u-width--two-thirds--tablet-landscape-only,
.u-width--four-sixths--tablet-landscape-only,
.u-width--six-ninths--tablet-landscape-only,
.u-width--eight-twelfths--tablet-landscape-only
{
width: 66.666%;
}
/* Quarters */
.u-width--one-quarter--tablet-landscape-only,
.u-width--two-eighths--tablet-landscape-only,
.u-width--three-twelfths--tablet-landscape-only
{
width: 25%;
}
.u-width--three-quarters--tablet-landscape-only,
.u-width--six-eighths--tablet-landscape-only,
.u-width--nine-twelfths--tablet-landscape-only
{
width: 75%;
}
/* Fifths */
.u-width--one-fifth--tablet-landscape-only,
.u-width--two-tenths--tablet-landscape-only
{
width: 20%;
}
.u-width--two-fifths--tablet-landscape-only,
.u-width--four-tenths--tablet-landscape-only
{
width: 40%;
}
.u-width--three-fifths--tablet-landscape-only,
.u-width--six-tenths--tablet-landscape-only
{
width: 60%;
}
.u-width--four-fifths--tablet-landscape-only,
.u-width--eight-tenths--tablet-landscape-only
{
width: 80%;
}
/* Sixths */
.u-width--one-sixth--tablet-landscape-only,
.u-width--two-twelfths--tablet-landscape-only
{
width: 16.666%;
}
.u-width--five-sixths--tablet-landscape-only,
.u-width--ten-twelfths--tablet-landscape-only
{
width: 83.333%;
}
/* Sevenths */
.u-width--one-seventh--tablet-landscape-only
{
width: 14.2857%;
}
.u-width--two-sevenths--tablet-landscape-only
{
width: 28.5714%;
}
.u-width--three-sevenths--tablet-landscape-only
{
width: 42.8571%;
}
.u-width--four-sevenths--tablet-landscape-only
{
width: 57.1428%;
}
.u-width--five-sevenths--tablet-landscape-only
{
width: 71.4285%;
}
.u-width--six-sevenths--tablet-landscape-only
{
width: 85.7142%;
}
/* Eighths */
.u-width--one-eighth--tablet-landscape-only
{
width: 12.5%;
}
.u-width--three-eighths--tablet-landscape-only
{
width: 37.5%;
}
.u-width--five-eighths--tablet-landscape-only
{
width: 62.5%;
}
.u-width--seven-eighths--tablet-landscape-only
{
width: 87.5%;
}
/* Ninths */
.u-width--one-ninth--tablet-landscape-only
{
width: 11.111%;
}
.u-width--two-ninths--tablet-landscape-only
{
width: 22.222%;
}
.u-width--four-ninths--tablet-landscape-only
{
width: 44.444%;
}
.u-width--five-ninths--tablet-landscape-only
{
width: 55.555%;
}
.u-width--seven-ninths--tablet-landscape-only
{
width: 77.777%;
}
.u-width--eight-ninths--tablet-landscape-only
{
width: 88.888%;
}
/* Tenths */
.u-width--one-tenth--tablet-landscape-only
{
width: 10%;
}
.u-width--three-tenths--tablet-landscape-only
{
width: 30%;
}
.u-width--seven-tenths--tablet-landscape-only
{
width: 70%;
}
.u-width--nine-tenths--tablet-landscape-only
{
width: 90%;
}
/* Elevenths */
.u-width--one-eleventh--tablet-landscape-only
{
width: 9.0909%;
}
.u-width--two-elevenths--tablet-landscape-only
{
width: 18.1818%;
}
.u-width--three-elevenths--tablet-landscape-only
{
width: 27.2727%;
}
.u-width--four-elevenths--tablet-landscape-only
{
width: 36.3636%;
}
.u-width--five-elevenths--tablet-landscape-only
{
width: 45.4545%;
}
.u-width--six-elevenths--tablet-landscape-only
{
width: 54.5454%;
}
.u-width--seven-elevenths--tablet-landscape-only
{
width: 63.6363%;
}
.u-width--eight-elevenths--tablet-landscape-only
{
width: 72.7272%;
}
.u-width--nine-elevenths--tablet-landscape-only
{
width: 81.8181%;
}
.u-width--ten-elevenths--tablet-landscape-only
{
width: 90.909%;
}
/* Twelfths */
.u-width--one-twelfth--tablet-landscape-only
{
width: 8.333%;
}
.u-width--five-twelfths--tablet-landscape-only
{
width: 41.666%;
}
.u-width--seven-twelfths--tablet-landscape-only
{
width: 58.333%;
}
.u-width--eleven-twelfths--tablet-landscape-only
{
width: 91.666%;
}
/* End tablet-landscape-only modifier */
}
@media only screen and (min-width: 80em)
{ /* Begin desktop-up modifier */
/* Whole */
.u-width--one-whole--desktop-up
{
width: 100%;
}
/* Halves */
.u-width--one-half--desktop-up,
.u-width--two-quarters--desktop-up,
.u-width--three-sixths--desktop-up,
.u-width--four-eighths--desktop-up,
.u-width--five-tenths--desktop-up,
.u-width--six-twelfths--desktop-up
{
width: 50%;
}
/* Thirds */
.u-width--one-third--desktop-up,
.u-width--two-sixths--desktop-up,
.u-width--three-ninths--desktop-up,
.u-width--four-twelfths--desktop-up
{
width: 33.333%;
}
.u-width--two-thirds--desktop-up,
.u-width--four-sixths--desktop-up,
.u-width--six-ninths--desktop-up,
.u-width--eight-twelfths--desktop-up
{
width: 66.666%;
}
/* Quarters */
.u-width--one-quarter--desktop-up,
.u-width--two-eighths--desktop-up,
.u-width--three-twelfths--desktop-up
{
width: 25%;
}
.u-width--three-quarters--desktop-up,
.u-width--six-eighths--desktop-up,
.u-width--nine-twelfths--desktop-up
{
width: 75%;
}
/* Fifths */
.u-width--one-fifth--desktop-up,
.u-width--two-tenths--desktop-up
{
width: 20%;
}
.u-width--two-fifths--desktop-up,
.u-width--four-tenths--desktop-up
{
width: 40%;
}
.u-width--three-fifths--desktop-up,
.u-width--six-tenths--desktop-up
{
width: 60%;
}
.u-width--four-fifths--desktop-up,
.u-width--eight-tenths--desktop-up
{
width: 80%;
}
/* Sixths */
.u-width--one-sixth--desktop-up,
.u-width--two-twelfths--desktop-up
{
width: 16.666%;
}
.u-width--five-sixths--desktop-up,
.u-width--ten-twelfths--desktop-up
{
width: 83.333%;
}
/* Sevenths */
.u-width--one-seventh--desktop-up
{
width: 14.2857%;
}
.u-width--two-sevenths--desktop-up
{
width: 28.5714%;
}
.u-width--three-sevenths--desktop-up
{
width: 42.8571%;
}
.u-width--four-sevenths--desktop-up
{
width: 57.1428%;
}
.u-width--five-sevenths--desktop-up
{
width: 71.4285%;
}
.u-width--six-sevenths--desktop-up
{
width: 85.7142%;
}
/* Eighths */
.u-width--one-eighth--desktop-up
{
width: 12.5%;
}
.u-width--three-eighths--desktop-up
{
width: 37.5%;
}
.u-width--five-eighths--desktop-up
{
width: 62.5%;
}
.u-width--seven-eighths--desktop-up
{
width: 87.5%;
}
/* Ninths */
.u-width--one-ninth--desktop-up
{
width: 11.111%;
}
.u-width--two-ninths--desktop-up
{
width: 22.222%;
}
.u-width--four-ninths--desktop-up
{
width: 44.444%;
}
.u-width--five-ninths--desktop-up
{
width: 55.555%;
}
.u-width--seven-ninths--desktop-up
{
width: 77.777%;
}
.u-width--eight-ninths--desktop-up
{
width: 88.888%;
}
/* Tenths */
.u-width--one-tenth--desktop-up
{
width: 10%;
}
.u-width--three-tenths--desktop-up
{
width: 30%;
}
.u-width--seven-tenths--desktop-up
{
width: 70%;
}
.u-width--nine-tenths--desktop-up
{
width: 90%;
}
/* Elevenths */
.u-width--one-eleventh--desktop-up
{
width: 9.0909%;
}
.u-width--two-elevenths--desktop-up
{
width: 18.1818%;
}
.u-width--three-elevenths--desktop-up
{
width: 27.2727%;
}
.u-width--four-elevenths--desktop-up
{
width: 36.3636%;
}
.u-width--five-elevenths--desktop-up
{
width: 45.4545%;
}
.u-width--six-elevenths--desktop-up
{
width: 54.5454%;
}
.u-width--seven-elevenths--desktop-up
{
width: 63.6363%;
}
.u-width--eight-elevenths--desktop-up
{
width: 72.7272%;
}
.u-width--nine-elevenths--desktop-up
{
width: 81.8181%;
}
.u-width--ten-elevenths--desktop-up
{
width: 90.909%;
}
/* Twelfths */
.u-width--one-twelfth--desktop-up
{
width: 8.333%;
}
.u-width--five-twelfths--desktop-up
{
width: 41.666%;
}
.u-width--seven-twelfths--desktop-up
{
width: 58.333%;
}
.u-width--eleven-twelfths--desktop-up
{
width: 91.666%;
}
/* End desktop-up modifier */
}
|
docs/api/OpenTl.Schema/TMsgDetailedInfo/8580E1DC.html | OpenTl/OpenTl.Schema | <!DOCTYPE html><html><head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="description">
<meta name="keywords" content="static content generator,static site generator,static site,HTML,web development,.NET,C#,Razor,Markdown,YAML">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/OpenTl.Schema/assets/img/favicon.ico" type="image/x-icon">
<link rel="icon" href="/OpenTl.Schema/assets/img/favicon.ico" type="image/x-icon">
<title>OpenTl.Schema - API - TMsgDetailedInfo.MsgId Property</title>
<link href="/OpenTl.Schema/assets/css/mermaid.css" rel="stylesheet">
<link href="/OpenTl.Schema/assets/css/highlight.css" rel="stylesheet">
<link href="/OpenTl.Schema/assets/css/bootstrap/bootstrap.css" rel="stylesheet">
<link href="/OpenTl.Schema/assets/css/adminlte/AdminLTE.css" rel="stylesheet">
<link href="/OpenTl.Schema/assets/css/theme/theme.css" rel="stylesheet">
<link href="//fonts.googleapis.com/css?family=Roboto+Mono:400,700|Roboto:400,400i,700,700i" rel="stylesheet">
<link href="/OpenTl.Schema/assets/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="/OpenTl.Schema/assets/css/override.css" rel="stylesheet">
<script src="/OpenTl.Schema/assets/js/jquery-2.2.3.min.js"></script>
<script src="/OpenTl.Schema/assets/js/bootstrap.min.js"></script>
<script src="/OpenTl.Schema/assets/js/app.min.js"></script>
<script src="/OpenTl.Schema/assets/js/highlight.pack.js"></script>
<script src="/OpenTl.Schema/assets/js/jquery.slimscroll.min.js"></script>
<script src="/OpenTl.Schema/assets/js/jquery.sticky-kit.min.js"></script>
<script src="/OpenTl.Schema/assets/js/mermaid.min.js"></script>
<!--[if lt IE 9]>
<script src="/OpenTl.Schema/assets/js/html5shiv.min.js"></script>
<script src="/OpenTl.Schema/assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body class="hold-transition wyam layout-boxed ">
<div class="top-banner"></div>
<div class="wrapper with-container">
<!-- Header -->
<header class="main-header">
<a href="/OpenTl.Schema/" class="logo">
<span>OpenTl.Schema</span>
</a>
<nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button-->
<a href="#" class="sidebar-toggle visible-xs-block" data-toggle="offcanvas" role="button">
<span class="sr-only">Toggle side menu</span>
<i class="fa fa-chevron-circle-right"></i>
</a>
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse">
<span class="sr-only">Toggle side menu</span>
<i class="fa fa-chevron-circle-down"></i>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse pull-left" id="navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="/OpenTl.Schema/about.html">About This Project</a></li>
<li class="active"><a href="/OpenTl.Schema/api">API</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
<!-- Navbar Right Menu -->
</nav>
</header>
<!-- Left side column. contains the logo and sidebar -->
<aside class="main-sidebar ">
<section class="infobar" data-spy="affix" data-offset-top="60" data-offset-bottom="200">
<div id="infobar-headings"><h6>On This Page</h6><p><a href="#Syntax">Syntax</a></p>
<p><a href="#Attributes">Attributes</a></p>
<p><a href="#Value">Value</a></p>
<hr class="infobar-hidden">
</div>
</section>
<section class="sidebar">
<script src="/OpenTl.Schema/assets/js/lunr.min.js"></script>
<script src="/OpenTl.Schema/assets/js/searchIndex.js"></script>
<div class="sidebar-form">
<div class="input-group">
<input type="text" name="search" id="search" class="form-control" placeholder="Search Types...">
<span class="input-group-btn">
<button class="btn btn-flat"><i class="fa fa-search"></i></button>
</span>
</div>
</div>
<div id="search-results">
</div>
<script>
function runSearch(query){
$("#search-results").empty();
if( query.length < 2 ){
return;
}
var results = searchModule.search("*" + query + "*");
var listHtml = "<ul class='sidebar-menu'>";
listHtml += "<li class='header'>Type Results</li>";
if(results.length == 0 ){
listHtml += "<li>No results found</li>";
} else {
for(var i = 0; i < results.length; ++i){
var res = results[i];
listHtml += "<li><a href='" + res.url + "'>" + htmlEscape(res.title) + "</a></li>";
}
}
listHtml += "</ul>";
$("#search-results").append(listHtml);
}
$(document).ready(function(){
$("#search").on('input propertychange paste', function() {
runSearch($("#search").val());
});
});
function htmlEscape(html) {
return document.createElement('div')
.appendChild(document.createTextNode(html))
.parentNode
.innerHTML;
}
</script>
<hr>
<ul class="sidebar-menu">
<li class="header">Namespace</li>
<li><a href="/OpenTl.Schema/api/OpenTl.Schema">OpenTl<wbr>.Schema</a></li>
<li class="header">Type</li>
<li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMsgDetailedInfo">TMsgDetailedInfo</a></li>
<li role="separator" class="divider"></li>
<li class="header">Property Members</li>
<li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMsgDetailedInfo/A20CA002.html">AnswerMsgId</a></li>
<li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMsgDetailedInfo/70048E95.html">Bytes</a></li>
<li class="selected"><a href="/OpenTl.Schema/api/OpenTl.Schema/TMsgDetailedInfo/8580E1DC.html">MsgId</a></li>
<li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMsgDetailedInfo/D0ECFD57.html">Status</a></li>
</ul>
</section>
</aside>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<section class="content-header">
<h3><a href="/OpenTl.Schema/api/OpenTl.Schema/TMsgDetailedInfo">TMsgDetailedInfo</a>.</h3>
<h1>MsgId <small>Property</small></h1>
</section>
<section class="content">
<div class="panel panel-default">
<div class="panel-body">
<dl class="dl-horizontal">
<dt>Namespace</dt>
<dd><a href="/OpenTl.Schema/api/OpenTl.Schema">OpenTl<wbr>.Schema</a></dd>
<dt>Containing Type</dt>
<dd><a href="/OpenTl.Schema/api/OpenTl.Schema/TMsgDetailedInfo">TMsgDetailedInfo</a></dd>
</dl>
</div>
</div>
<h1 id="Syntax">Syntax</h1>
<pre><code>[SerializationOrder(0)]
public long MsgId { get; set; }</code></pre>
<h1 id="Attributes">Attributes</h1>
<div class="box">
<div class="box-body no-padding table-responsive">
<table class="table table-striped table-hover two-cols">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody><tr>
<td>Serialization<wbr>Order<wbr>Attribute</td>
<td></td>
</tr>
</tbody></table>
</div>
</div>
<h1 id="Value">Value</h1>
<div class="box">
<div class="box-body no-padding table-responsive">
<table class="table table-striped table-hover two-cols">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody><tr>
<td>long</td>
<td></td>
</tr>
</tbody></table>
</div>
</div>
</section>
</div>
<!-- Footer -->
<footer class="main-footer">
</footer>
</div>
<div class="wrapper bottom-wrapper">
<footer class="bottom-footer">
Generated by <a href="https://wyam.io">Wyam</a>
</footer>
</div>
<a href="javascript:" id="return-to-top"><i class="fa fa-chevron-up"></i></a>
<script>
// Close the sidebar if we select an anchor link
$(".main-sidebar a[href^='#']:not('.expand')").click(function(){
$(document.body).removeClass('sidebar-open');
});
$(document).load(function() {
mermaid.initialize(
{
flowchart:
{
htmlLabels: false,
useMaxWidth:false
}
});
mermaid.init(undefined, ".mermaid")
$('svg').addClass('img-responsive');
$('pre code').each(function(i, block) {
hljs.highlightBlock(block);
});
});
hljs.initHighlightingOnLoad();
// Back to top
$(window).scroll(function() {
if ($(this).scrollTop() >= 200) { // If page is scrolled more than 50px
$('#return-to-top').fadeIn(1000); // Fade in the arrow
} else {
$('#return-to-top').fadeOut(1000); // Else fade out the arrow
}
});
$('#return-to-top').click(function() { // When arrow is clicked
$('body,html').animate({
scrollTop : 0 // Scroll to top of body
}, 500);
});
</script>
</body></html> |
src/css/angularicons.css | kentdoppelganger/angularicons | /*
* Copyright 2013 AngularGap.
*
* AngularIcons, v1.00
* The premium icon font for AngularGap.
* http://angulargap.github.io/angularicons.html
*
* By @AngularGap
*
* Licensed under the MIT license. Please see LICENSE for more information.
*
*/
/**
* icon_font
* --------------------------------------------------
*/
@font-face {
font-family: "angularicons";
src: url("../fonts/angularicons.eot");
src: url("../fonts/angularicons.eot?#iefix") format("embedded-opentype"), url("../fonts/angularicons.woff") format("woff"), url("../fonts/angularicons.ttf") format("truetype"), url("../fonts/angularicons.svg") format("svg");
}
.icon {
display: inline-block;
font-family: "angularicons";
font-weight: normal;
font-style: normal;
text-decoration: none;
vertical-align: top;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon--primary {
color: #007aff;
}
.icon--success {
color: #4cd964;
}
.icon--important {
color: #ff3b30;
}
.icon[data-icon]:before {
content: attr(data-icon);
speak: none;
}
/*# sourceMappingURL=angularicons.css.map */ |
lib/CML/html/classEventError-members.html | DJGCrusader/ParallelScissorManipulator | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.6"/>
<title>Copley Motion Library: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Copley Motion Library
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.6 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('classEventError.html','');});
</script>
<div id="doc-content">
<div class="header">
<div class="headertitle">
<div class="title">EventError Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classEventError.html">EventError</a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="classEventError.html#a30a0384e6f0e99d626b6b680ab6ba0ff">AlreadyOwned</a></td><td class="entry"><a class="el" href="classEventError.html">EventError</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="classError.html#ac0b33183c7dd20600742bcbf9ad9b5f7">Error</a>(uint16 i, const char *desc)</td><td class="entry"><a class="el" href="classError.html">Error</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classEventError.html#a4753c2148fd63f57cca8f3a4a0e24e5b">EventError</a>(uint16 id, const char *desc)</td><td class="entry"><a class="el" href="classEventError.html">EventError</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classError.html#ad5779f7ac23e3d6f27beb66b88d5efc0">GetID</a>(void) const </td><td class="entry"><a class="el" href="classError.html">Error</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classError.html#ae948e265389f5a11d8ee04a18a17f1d0">Internal</a></td><td class="entry"><a class="el" href="classError.html">Error</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="classError.html#af4dd04be49d03a1c2924e893b6c2a81f">Lookup</a>(int16 id)</td><td class="entry"><a class="el" href="classError.html">Error</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classEventError.html#a3017a77a0b576b6ab9d1796e9887ecf6">NotMapped</a></td><td class="entry"><a class="el" href="classEventError.html">EventError</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="classError.html#a02646c4aec296d0dc5f9697a68b602e5">OK</a></td><td class="entry"><a class="el" href="classError.html">Error</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classError.html#a3072870d2c9e4268108c8172be04a784">toString</a>() const </td><td class="entry"><a class="el" href="classError.html">Error</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classError.html#a82a7482d2baf74ad15cf7872df1b5cb1">Unknown</a></td><td class="entry"><a class="el" href="classError.html">Error</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
</table></div><!-- contents -->
</div><!-- doc-content -->
<hr>
<address style="align: right;">
<small>Copley Motion Library, Copyright (c) 2002-2003
<a href="http://www.copleycontrols.com">
<img src="CCC_logo.gif" alt="Copley Controls Corp." align="middle" border=0 ></a>
</small>
</address>
</body>
</html>
|
doc/javadoc/index-files/index-6.html | felixhamel/ift287_tp4 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_25) on Thu Dec 04 23:50:31 EST 2014 -->
<title>F-Index</title>
<meta name="date" content="2014-12-04">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="F-Index";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="index-5.html">Prev Letter</a></li>
<li><a href="index-7.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-files/index-6.html" target="_top">Frames</a></li>
<li><a href="index-6.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">R</a> <a href="index-16.html">S</a> <a href="index-17.html">T</a> <a href="index-18.html">U</a> <a href="index-19.html">V</a> <a href="index-20.html">W</a> <a name="I:F">
<!-- -->
</a>
<h2 class="title">F</h2>
<dl>
<dt><a href="../ligueBaseball/exceptions/FailedToConnectToDatabaseException.html" title="class in ligueBaseball.exceptions"><span class="typeNameLink">FailedToConnectToDatabaseException</span></a> - Exception in <a href="../ligueBaseball/exceptions/package-summary.html">ligueBaseball.exceptions</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/exceptions/FailedToConnectToDatabaseException.html#FailedToConnectToDatabaseException-java.lang.String-java.lang.Throwable-">FailedToConnectToDatabaseException(String, Throwable)</a></span> - Constructor for exception ligueBaseball.exceptions.<a href="../ligueBaseball/exceptions/FailedToConnectToDatabaseException.html" title="class in ligueBaseball.exceptions">FailedToConnectToDatabaseException</a></dt>
<dd> </dd>
<dt><a href="../ligueBaseball/exceptions/FailedToCreateTableException.html" title="class in ligueBaseball.exceptions"><span class="typeNameLink">FailedToCreateTableException</span></a> - Exception in <a href="../ligueBaseball/exceptions/package-summary.html">ligueBaseball.exceptions</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/exceptions/FailedToCreateTableException.html#FailedToCreateTableException-java.lang.String-">FailedToCreateTableException(String)</a></span> - Constructor for exception ligueBaseball.exceptions.<a href="../ligueBaseball/exceptions/FailedToCreateTableException.html" title="class in ligueBaseball.exceptions">FailedToCreateTableException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/exceptions/FailedToCreateTableException.html#FailedToCreateTableException-java.lang.String-java.lang.Throwable-">FailedToCreateTableException(String, Throwable)</a></span> - Constructor for exception ligueBaseball.exceptions.<a href="../ligueBaseball/exceptions/FailedToCreateTableException.html" title="class in ligueBaseball.exceptions">FailedToCreateTableException</a></dt>
<dd> </dd>
<dt><a href="../ligueBaseball/exceptions/FailedToDeleteEntityException.html" title="class in ligueBaseball.exceptions"><span class="typeNameLink">FailedToDeleteEntityException</span></a> - Exception in <a href="../ligueBaseball/exceptions/package-summary.html">ligueBaseball.exceptions</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/exceptions/FailedToDeleteEntityException.html#FailedToDeleteEntityException-java.lang.String-">FailedToDeleteEntityException(String)</a></span> - Constructor for exception ligueBaseball.exceptions.<a href="../ligueBaseball/exceptions/FailedToDeleteEntityException.html" title="class in ligueBaseball.exceptions">FailedToDeleteEntityException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/exceptions/FailedToDeleteEntityException.html#FailedToDeleteEntityException-java.lang.String-java.lang.Throwable-">FailedToDeleteEntityException(String, Throwable)</a></span> - Constructor for exception ligueBaseball.exceptions.<a href="../ligueBaseball/exceptions/FailedToDeleteEntityException.html" title="class in ligueBaseball.exceptions">FailedToDeleteEntityException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/exceptions/FailedToDeleteEntityException.html#FailedToDeleteEntityException-java.lang.Throwable-">FailedToDeleteEntityException(Throwable)</a></span> - Constructor for exception ligueBaseball.exceptions.<a href="../ligueBaseball/exceptions/FailedToDeleteEntityException.html" title="class in ligueBaseball.exceptions">FailedToDeleteEntityException</a></dt>
<dd> </dd>
<dt><a href="../ligueBaseball/exceptions/FailedToRetrieveMatchException.html" title="class in ligueBaseball.exceptions"><span class="typeNameLink">FailedToRetrieveMatchException</span></a> - Exception in <a href="../ligueBaseball/exceptions/package-summary.html">ligueBaseball.exceptions</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/exceptions/FailedToRetrieveMatchException.html#FailedToRetrieveMatchException--">FailedToRetrieveMatchException()</a></span> - Constructor for exception ligueBaseball.exceptions.<a href="../ligueBaseball/exceptions/FailedToRetrieveMatchException.html" title="class in ligueBaseball.exceptions">FailedToRetrieveMatchException</a></dt>
<dd> </dd>
<dt><a href="../ligueBaseball/exceptions/FailedToRetrieveNextKeyFromSequenceException.html" title="class in ligueBaseball.exceptions"><span class="typeNameLink">FailedToRetrieveNextKeyFromSequenceException</span></a> - Exception in <a href="../ligueBaseball/exceptions/package-summary.html">ligueBaseball.exceptions</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/exceptions/FailedToRetrieveNextKeyFromSequenceException.html#FailedToRetrieveNextKeyFromSequenceException-java.lang.String-">FailedToRetrieveNextKeyFromSequenceException(String)</a></span> - Constructor for exception ligueBaseball.exceptions.<a href="../ligueBaseball/exceptions/FailedToRetrieveNextKeyFromSequenceException.html" title="class in ligueBaseball.exceptions">FailedToRetrieveNextKeyFromSequenceException</a></dt>
<dd> </dd>
<dt><a href="../ligueBaseball/exceptions/FailedToRetrievePlayersOfTeamException.html" title="class in ligueBaseball.exceptions"><span class="typeNameLink">FailedToRetrievePlayersOfTeamException</span></a> - Exception in <a href="../ligueBaseball/exceptions/package-summary.html">ligueBaseball.exceptions</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/exceptions/FailedToRetrievePlayersOfTeamException.html#FailedToRetrievePlayersOfTeamException-java.lang.String-java.lang.Throwable-">FailedToRetrievePlayersOfTeamException(String, Throwable)</a></span> - Constructor for exception ligueBaseball.exceptions.<a href="../ligueBaseball/exceptions/FailedToRetrievePlayersOfTeamException.html" title="class in ligueBaseball.exceptions">FailedToRetrievePlayersOfTeamException</a></dt>
<dd> </dd>
<dt><a href="../ligueBaseball/exceptions/FailedToSaveEntityException.html" title="class in ligueBaseball.exceptions"><span class="typeNameLink">FailedToSaveEntityException</span></a> - Exception in <a href="../ligueBaseball/exceptions/package-summary.html">ligueBaseball.exceptions</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/exceptions/FailedToSaveEntityException.html#FailedToSaveEntityException-java.lang.String-">FailedToSaveEntityException(String)</a></span> - Constructor for exception ligueBaseball.exceptions.<a href="../ligueBaseball/exceptions/FailedToSaveEntityException.html" title="class in ligueBaseball.exceptions">FailedToSaveEntityException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/exceptions/FailedToSaveEntityException.html#FailedToSaveEntityException-java.lang.Throwable-">FailedToSaveEntityException(Throwable)</a></span> - Constructor for exception ligueBaseball.exceptions.<a href="../ligueBaseball/exceptions/FailedToSaveEntityException.html" title="class in ligueBaseball.exceptions">FailedToSaveEntityException</a></dt>
<dd> </dd>
<dt><a href="../ligueBaseball/entities/Field.html" title="class in ligueBaseball.entities"><span class="typeNameLink">Field</span></a> - Class in <a href="../ligueBaseball/entities/package-summary.html">ligueBaseball.entities</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/entities/Field.html#Field--">Field()</a></span> - Constructor for class ligueBaseball.entities.<a href="../ligueBaseball/entities/Field.html" title="class in ligueBaseball.entities">Field</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/models/MatchModel.html#field">field</a></span> - Variable in class ligueBaseball.models.<a href="../ligueBaseball/models/MatchModel.html" title="class in ligueBaseball.models">MatchModel</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/models/TeamModel.html#field">field</a></span> - Variable in class ligueBaseball.models.<a href="../ligueBaseball/models/TeamModel.html" title="class in ligueBaseball.models">TeamModel</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/entities/Match.html#fieldId">fieldId</a></span> - Variable in class ligueBaseball.entities.<a href="../ligueBaseball/entities/Match.html" title="class in ligueBaseball.entities">Match</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/entities/Team.html#fieldId">fieldId</a></span> - Variable in class ligueBaseball.entities.<a href="../ligueBaseball/entities/Team.html" title="class in ligueBaseball.entities">Team</a></dt>
<dd> </dd>
<dt><a href="../ligueBaseball/models/FieldModel.html" title="class in ligueBaseball.models"><span class="typeNameLink">FieldModel</span></a> - Class in <a href="../ligueBaseball/models/package-summary.html">ligueBaseball.models</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/models/FieldModel.html#FieldModel--">FieldModel()</a></span> - Constructor for class ligueBaseball.models.<a href="../ligueBaseball/models/FieldModel.html" title="class in ligueBaseball.models">FieldModel</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/models/FieldModel.html#FieldModel-ligueBaseball.entities.Field-">FieldModel(Field)</a></span> - Constructor for class ligueBaseball.models.<a href="../ligueBaseball/models/FieldModel.html" title="class in ligueBaseball.models">FieldModel</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/entities/Official.html#firstName">firstName</a></span> - Variable in class ligueBaseball.entities.<a href="../ligueBaseball/entities/Official.html" title="class in ligueBaseball.entities">Official</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/entities/Player.html#firstName">firstName</a></span> - Variable in class ligueBaseball.entities.<a href="../ligueBaseball/entities/Player.html" title="class in ligueBaseball.entities">Player</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/models/OfficialModel.html#firstName">firstName</a></span> - Variable in class ligueBaseball.models.<a href="../ligueBaseball/models/OfficialModel.html" title="class in ligueBaseball.models">OfficialModel</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ligueBaseball/models/PlayerModel.html#firstName">firstName</a></span> - Variable in class ligueBaseball.models.<a href="../ligueBaseball/models/PlayerModel.html" title="class in ligueBaseball.models">PlayerModel</a></dt>
<dd> </dd>
</dl>
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">R</a> <a href="index-16.html">S</a> <a href="index-17.html">T</a> <a href="index-18.html">U</a> <a href="index-19.html">V</a> <a href="index-20.html">W</a> </div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="index-5.html">Prev Letter</a></li>
<li><a href="index-7.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-files/index-6.html" target="_top">Frames</a></li>
<li><a href="index-6.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
index.html | andrewdacenko/sass-learning | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>SASS learning with compass</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div class="sprites">
<div class="icons-user"></div>
<div class="icons-clock"></div>
<div class="icons-mail"></div>
<div class="icons-calendar"></div>
</div>
</body>
</html> |
_site/2011/07/07/t88965474725011456.html | craigwmcclellan/craigwmcclellan.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="Craig McClellan" name="author">
<title>Craig McClellan - T88965474725011456 </title>
<link href="/assets/css/style.css" rel="stylesheet">
<link href="/assets/css/highlight.css" rel="stylesheet">
<link rel="stylesheet" href="/custom.css">
<link rel="shortcut icon" href="https://micro.blog/craigmcclellan/favicon.png" type="image/x-icon" />
<link rel="alternate" type="application/rss+xml" title="Craig McClellan" href="http://craigmcclellan.com/feed.xml" />
<link rel="alternate" type="application/json" title="Craig McClellan" href="http://craigmcclellan.com/feed.json" />
<link rel="EditURI" type="application/rsd+xml" href="/rsd.xml" />
<link rel="me" href="https://micro.blog/craigmcclellan" />
<link rel="me" href="https://twitter.com/craigmcclellan" />
<link rel="me" href="https://github.com/craigwmcclellan" />
<link rel="authorization_endpoint" href="https://micro.blog/indieauth/auth" />
<link rel="token_endpoint" href="https://micro.blog/indieauth/token" />
<link rel="micropub" href="https://micro.blog/micropub" />
<link rel="webmention" href="https://micro.blog/webmention" />
<link rel="subscribe" href="https://micro.blog/users/follow" />
</head>
<body>
<nav class="main-nav">
<a class="normal" href="/"> <span class="arrow">←</span> Home</a>
<a href="/archive/">Archive</a>
<a href="/about/">About</a>
<a href="/tools-of-choice/">Tools of Choice</a>
<a class="cta" href="https://micro.blog/craigmcclellan" rel="me">Also on Micro.blog</a>
</nav>
<section id="wrapper">
<article class="h-entry post">
<header>
<h2 class="headline">
<time class="dt-published" datetime="2011-07-07 08:39:56 -0500">
<a class="u-url dates" href="/2011/07/07/t88965474725011456.html">July 7, 2011</a>
</time>
</h2>
</header>
<section class="e-content post-body">
<p>Happy Anniversary to my friends @collinbrace and @katierobrace as well as @thatdrimmel and Chelsea! I’m thankful for you guys.</p>
</section>
</article>
<section id="post-meta" class="clearfix">
<a href="/">
<img class="u-photo avatar" src="https://micro.blog/craigmcclellan/avatar.jpg">
<div>
<span class="p-author h-card dark">Craig McClellan</span>
<span><a href="https://micro.blog/craigmcclellan">@craigmcclellan</a></span>
</div>
</a>
</section>
</section>
<footer id="footer">
<section id="wrapper">
<ul>
<li><a href="/feed.xml">RSS</a></li>
<li><a href="/feed.json">JSON Feed</a></li>
<li><a href="https://micro.blog/craigmcclellan" rel="me">Micro.blog</a></li>
<!-- <li><a class="u-email" href="mailto:" rel="me">Email</a></li> -->
</ul>
<form method="get" id="search" action="https://duckduckgo.com/">
<input type="hidden" name="sites" value="http://craigmcclellan.com"/>
<input type="hidden" name="k8" value="#444444"/>
<input type="hidden" name="k9" value="#ee4792"/>
<input type="hidden" name="kt" value="h"/>
<input class="field" type="text" name="q" maxlength="255" placeholder="To search, type and hit Enter…"/>
<input type="submit" value="Search" style="display: none;" />
</form>
</section>
</footer>
</body>
</html>
|
alternet-libs/tools/xref-test/ml/alternet/discover/LookupKeyProducerTest$B_Producer_var2.html | alternet/alternet.github.io | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head><meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>LookupKeyProducerTest$B_Producer_var2 xref</title>
<link type="text/css" rel="stylesheet" href="../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../../../../../tools/target/site/testapidocs/ml/alternet/discover/LookupKeyProducerTest$B_Producer_var2.html">View Javadoc</a></div><pre>
<a class="jxr_linenumber" name="L1" href="#L1">1</a> <strong class="jxr_keyword">package</strong> ml.alternet.discover;
<a class="jxr_linenumber" name="L2" href="#L2">2</a>
<a class="jxr_linenumber" name="L3" href="#L3">3</a> <strong class="jxr_keyword">import</strong> java.lang.annotation.Annotation;
<a class="jxr_linenumber" name="L4" href="#L4">4</a> <strong class="jxr_keyword">import</strong> java.util.ArrayList;
<a class="jxr_linenumber" name="L5" href="#L5">5</a> <strong class="jxr_keyword">import</strong> java.util.List;
<a class="jxr_linenumber" name="L6" href="#L6">6</a>
<a class="jxr_linenumber" name="L7" href="#L7">7</a> <strong class="jxr_keyword">import</strong> javax.enterprise.inject.Any;
<a class="jxr_linenumber" name="L8" href="#L8">8</a> <strong class="jxr_keyword">import</strong> javax.enterprise.inject.Instance;
<a class="jxr_linenumber" name="L9" href="#L9">9</a> <strong class="jxr_keyword">import</strong> javax.enterprise.inject.spi.InjectionPoint;
<a class="jxr_linenumber" name="L10" href="#L10">10</a>
<a class="jxr_linenumber" name="L11" href="#L11">11</a> <strong class="jxr_keyword">import</strong> javax.inject.Named;
<a class="jxr_linenumber" name="L12" href="#L12">12</a> <strong class="jxr_keyword">import</strong> javax.inject.Qualifier;
<a class="jxr_linenumber" name="L13" href="#L13">13</a>
<a class="jxr_linenumber" name="L14" href="#L14">14</a> <strong class="jxr_keyword">import</strong> ml.alternet.discover.DiscoveryService;
<a class="jxr_linenumber" name="L15" href="#L15">15</a> <strong class="jxr_keyword">import</strong> ml.alternet.misc.OmgException;
<a class="jxr_linenumber" name="L16" href="#L16">16</a>
<a class="jxr_linenumber" name="L17" href="#L17">17</a> @javax.annotation.Generated(value=<span class="jxr_string">"ml.alternet.discover.gen.LookupKeyProducerGenerator"</span>)
<a class="jxr_linenumber" name="L18" href="#L18">18</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> LookupKeyProducerTest$B_Producer_<strong class="jxr_keyword">var</strong>2 {
<a class="jxr_linenumber" name="L19" href="#L19">19</a>
<a class="jxr_linenumber" name="L20" href="#L20">20</a> @javax.enterprise.inject.Produces
<a class="jxr_linenumber" name="L21" href="#L21">21</a> @ml.alternet.discover.Injection.LookupKey(variant=<span class="jxr_string">"var2"</span>)
<a class="jxr_linenumber" name="L22" href="#L22">22</a> <strong class="jxr_keyword">public</strong> ml.alternet.discover.LookupKeyProducerTest.B createLookupKeyProducerTest$B(@Any Instance<ml.alternet.discover.LookupKeyProducerTest.B> instance, InjectionPoint ip) {
<a class="jxr_linenumber" name="L23" href="#L23">23</a> <strong class="jxr_keyword">try</strong> {
<a class="jxr_linenumber" name="L24" href="#L24">24</a> Class<ml.alternet.discover.LookupKeyProducerTest.B> clazz = DiscoveryService.lookup(<span class="jxr_string">"ml.alternet.discover.LookupKeyProducerTest.B/var2"</span>);
<a class="jxr_linenumber" name="L25" href="#L25">25</a> List<Annotation> annotations = <strong class="jxr_keyword">new</strong> ArrayList<Annotation>();
<a class="jxr_linenumber" name="L26" href="#L26">26</a> <strong class="jxr_keyword">for</strong> (Annotation ann : clazz.getAnnotations()) {
<a class="jxr_linenumber" name="L27" href="#L27">27</a> <strong class="jxr_keyword">if</strong> (ann.annotationType().isAnnotationPresent(Qualifier.<strong class="jxr_keyword">class</strong>) ||
<a class="jxr_linenumber" name="L28" href="#L28">28</a> ann.annotationType().isAnnotationPresent(Named.<strong class="jxr_keyword">class</strong>)) {
<a class="jxr_linenumber" name="L29" href="#L29">29</a> annotations.add(ann);
<a class="jxr_linenumber" name="L30" href="#L30">30</a> }
<a class="jxr_linenumber" name="L31" href="#L31">31</a> }
<a class="jxr_linenumber" name="L32" href="#L32">32</a> <strong class="jxr_keyword">return</strong> instance.select(clazz, annotations.toArray(<strong class="jxr_keyword">new</strong> Annotation[annotations.size()])).get();
<a class="jxr_linenumber" name="L33" href="#L33">33</a> } <strong class="jxr_keyword">catch</strong> (ClassNotFoundException e) {
<a class="jxr_linenumber" name="L34" href="#L34">34</a> <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> OmgException(e);
<a class="jxr_linenumber" name="L35" href="#L35">35</a> }
<a class="jxr_linenumber" name="L36" href="#L36">36</a> }
<a class="jxr_linenumber" name="L37" href="#L37">37</a>
<a class="jxr_linenumber" name="L38" href="#L38">38</a> }
</pre>
<hr/>
<div id="footer">Copyright © 2020 <a href="http://alternet.github.io">Alternet</a>. All rights reserved.</div>
</body>
</html>
|
clean/Linux-x86_64-4.02.1-1.2.0/unstable/8.4.5/contrib:relation-algebra/dev/2014-12-13_14-28-53.html | coq-bench/coq-bench.github.io-old | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../../..">Unstable</a></li>
<li><a href=".">8.4.5 / contrib:relation-algebra dev</a></li>
<li class="active"><a href="">2014-12-13 14:28:53</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="../../../../../about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href=".">« Up</a>
<h1>
contrib:relation-algebra
<small>
dev
<span class="label label-info">Not compatible with this Coq</span>
</small>
</h1>
<p><em><script>document.write(moment("2014-12-13 14:28:53 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2014-12-13 14:28:53 UTC)</em><p>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:relation-algebra/coq:contrib:relation-algebra.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Output</dt>
<dd><pre>The package is valid.
</pre></dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --dry-run coq:contrib:relation-algebra.dev coq.8.4.5</code></dd>
<dt>Return code</dt>
<dd>768</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.4.5).
The following dependencies couldn't be met:
- coq:contrib:relation-algebra -> coq >= dev
Your request can't be satisfied:
- Conflicting version constraints for coq
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --dry-run coq:contrib:relation-algebra.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>3 s</dd>
<dt>Output</dt>
<dd><pre>The following actions will be performed:
- remove coq.8.4.5
=== 1 to remove ===
=-=- Removing Packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Removing coq.8.4.5.
[WARNING] Directory /home/bench/.opam/system/lib/coq is not empty, not removing
[WARNING] Directory /home/bench/.opam/system/share/coq is not empty, not removing
The following actions will be performed:
- install coq.hott [required by coq:contrib:relation-algebra]
- install coq:contrib:relation-algebra.dev
=== 2 to install ===
=-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
=-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Building coq.hott:
./configure -configdir /home/bench/.opam/system/lib/coq/config -mandir /home/bench/.opam/system/man -docdir /home/bench/.opam/system/doc -prefix /home/bench/.opam/system -usecamlp5 -camlp5dir /home/bench/.opam/system/lib/camlp5 -coqide no
make -j4
make install
Installing coq.hott.
Building coq:contrib:relation-algebra.dev:
coq_makefile -f Make -o Makefile
make -j4
make install
Installing coq:contrib:relation-algebra.dev.
</pre></dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html> |
_posts/2014-10-03-1-3-1%e3%80%80kde%e5%88%9d%e5%ad%a6%e8%80%85%e7%9a%84%e9%a6%96%e9%80%89-linux%e5%b0%b1%e6%98%af%e8%bf%99%e4%b8%aa%e8%8c%83%e5%84%bf.html | c834606877/c834606877.github.io | ---
layout: post
title: 1.3.1 KDE初学者的首选 – Linux就是这个范儿
date: 2014-10-03 09:30:43.000000000 +08:00
type: post
published: true
status: publish
categories:
- Linux就是这个范儿
tags: []
meta:
_edit_last: '1'
views: '51'
author:
login: lanbing
email: c834606877@163.com
display_name: lanbing
first_name: ''
last_name: ''
---
<p>
KDE是由德国人Matthias Ettrich于1996年就读于图宾根大学时开始的一个计划。当时的Unix桌面没有一个应用程序的外观、感受或工作方式与其他程序一样。于是Matthias Ettrich就建议不仅是创建一套应用程序,而是要创建一个桌面环境,能让用户拥有相同的外观、感受和工作方式,而且这个桌面应该是非常容易使用的。他的这个想法得到了很多人的支持,从此KDE计划就诞生了。</p>
<p>
可能有人会疑惑,KDE是给Unix的,似乎跟Linux没有什么关系,为什么这本书要介绍它呢?其实不单单KDE是这样,剩下的三个桌面环境也是这样。甚至在这个星球上完全针对Linux编写的软件也是并不多的,那些在Linux下能够获得的软件大多不是针对Linux开发的。它们是针对Unix系统的,而Linux属于类Unix系统,所以就毫无歉意地坐享了这些成果。这就是Linux的优势,也是大家学习Linux的优势。学会了Linux,几乎就等同于学会了Unix或类Unix系统,它们在这个星球的应用范围就从来没有被Windows超越过。本书的内容也是如此,只有少数章节是专门针对Linux特性所特别设置的,大多数知识都是通用且极具实用价值的。好了,闲话不多说,我们继续介绍KDE。</p>
<p>
追究KDE这个名字的由来是没有实际意义的,但是我们需要知道它是完全采用Qt程序库(后面的章节会有详细介绍)开发的。由于Qt多舛的命运<a href="#_ftn2" name="_ftnref2" title="">[②]</a>,注定了KDE同样会拥有风雨飘摇的艰辛历程。</p>
<p>
虽然Qt是开放源代码的软件,但是在KDE早期的时候Qt并非是自由软件授权,这与KDE的自由软件授权相冲突,所以很多人会担心惹上版权麻烦,尽量避免使用KDE,这成为了KDE初期推广的障碍。</p>
<p>
很庆幸的是1998年11月之后,Qt程序库所属的Trolltech公司发布了第一份自由软件许可Q Public License(QPL)的Qt程序库授权。同年不久,KDE Free Qt基金会<a href="#_ftn3" name="_ftnref3" title="">[③]</a>保证:若Trolltech在任意连续12个月内没有发布新的自由版本,那么Qt程序库将更改为基于BSD许可证的授权进行发布。但是很多人依然争论着,认为QPL授权与GPL(万恶的“鸡屁儿”)上的某些条款不相容。这导致了Red Hat公司始终无法将KDE当作默认桌面,而Mandriva Linux则趁此时机凭借KDE席卷了欧洲市场。</p>
<p>
直到2000年9月,一个基于GPL协议的Qt程序库发布,大部分用户方才对KDE生出信心。此时的KDE已经日臻完善,国内的各大Linux发行版都纷纷采用KDE作为其默认桌面,甚至出现了“阳春白雪<a href="#_ftn4" name="_ftnref4" title="">[④]</a>”这样专门针对KDE的汉化美化套件。</p>
<p>
2008年是一个非常重要的年景,奥运会第一次在中国召开,Qt升级到了4.0,并且采用了更加宽泛的LGPL授权(仅Qt4以后的版本)。但是KDE的好日子到头了。Qt4的LGPL授权固然招人喜欢,但是Qt4相对于Qt3做了较大幅度的调整,如果KDE转投Qt4,则必须做较大改动甚至重写。KDE的开发者们抱着有困难要上,没有困难制造困难也要上的必死决心毅然地转投Qt4的怀抱。这导致了很长一段时间人们没有新的KDE版本使用,那些不断放出的KDE4的各种版本几乎个个都是花瓶,中看不中用。直到KDE 4.2版本的发布,才彻底稳定了下来。于是就在Linux界流传了一段笑话:KDE从能用到不能用再到能用,之后GNOME从能用到不能用。至于GNOME的故事我们稍后再说,KDE的故事还在继续。</p>
<p>
经过Qt3到Qt4转变的这么一折腾,损失大量粉丝是在所难免的了,而祸总是不单行的。就在KDE4准备发力接受市场的挑战之际,Qt的所属公司Trolltech被大名鼎鼎的Nokia收购了。原以为能够如虎添翼一下,可万没想到的是Nokia又是一个倒霉蛋,倒霉到不得不去抱微软的大腿。结果是大腿没等抱稳,就把Qt给弄丢了,出售给了Digia公司。但是不管怎么样,由于Qt是LGPL授权的,所以它就是属于全人类的了,我们能够永远都有免费的Qt使用。</p>
<p>
Qt其实是一个非常优秀的C++跨平台图形界面开发库,几乎可以媲美Java的跨平台特性。不同的是Java能够一次编译到处运行,而Qt是可以一次编码到处编译。也正因为如此,KDE已经被移植到了几乎所有硬件和操作系统平台上。现在的KDE已经不单单是一个桌面环境,它几乎就是基于Qt开发的程序的庞大集合,是Qt的一个超级平台。这里拥有功能异常丰富的应用,包括各种跨平台组件、办公套件和开发套件等,几乎可以找到任何Qt应用的样板。而且从任何角度来看,Qt都是用C++开发跨平台图形应用的首选程序库,最新的WPS选择它就是非常好的佐证。对于学习和掌握Qt,KDE是非常理想的平台。</p>
<p>
需要注意,如果你根据我们的推荐选择安装了CentOS,KDE是选装部分,需要在安装的时候选中它才可以,否则就需要根据下一章所介绍的内容去手动安装了。如果你选择的是SUSE,则默认就可以使用KDE了。我们推荐初学Linux的用户选择KDE,它的操作习惯与Windows更加接近。</p>
<p style="text-align: right;">
<a href="http://hook.aliapp.com/?p=554" style="font-family: 宋体; font-size: 14px; line-height: 28px; text-align: right; text-indent: 28px;">Linux就是这个范儿 – 本书目录 </a></p>
<hr />
<div id="ftn2">
<p style="margin-left:12pt;">
<a href="#_ftnref2" name="_ftn2" title="">[②]</a> 1991年由TrollTech公司开发,于2008年被Nokia所收购,2012年又卖给了Digia公司。曾数次修改授权方式。
</p>
</div>
<div id="ftn3">
<p style="margin-left:12pt;">
<a href="#_ftnref3" name="_ftn3" title="">[③]</a> 就是保证Qt和KDE在任何情况下都是自由软件的组织,最初有TrollTech和KDE开发者共同创立。
</p>
</div>
<div id="ftn4">
<p style="margin-left:12pt;">
<a href="#_ftnref4" name="_ftn4" title="">[④]</a> 2001年沈阳玳娜软件有限公司为了推动中文Linux的普及,针对Red Hat Linux 7.2推出的一款汉化美化套件,其中包括中文输入法和KDE的汉化美化部分。属于死在沙滩上的优秀前辈。
</p>
</div>
|
Beocreate2/beo-extensions/sound/sound.css | bang-olufsen/create | /* @override
http://beocreate-core.local/extensions/sound/sound.css */
body:not(.advanced-sound-adjustments) .advanced-adjustment:not(h2):not(.menu-item) {
display: none !important;
}
h2.advanced-adjustment {
transition: opacity 0.5s ease, margin-bottom 0.5s ease;
}
body:not(.advanced-sound-adjustments) .advanced-adjustment.menu-item {
/*display: none !important;*/
/*transform: scaleY(0);*/
opacity: 0;
margin-bottom: -45px;
pointer-events: none;
}
body:not(.advanced-sound-adjustments) h2.advanced-adjustment {
/*display: none !important;*/
/*transform: scaleY(0);*/
opacity: 0;
margin-bottom: -35px;
pointer-events: none;
}
body.advanced-sound-adjustments .simple-adjustment {
/*display: none !important;*/
}
#sound .advanced-adjustment.no-animation {
transition: none;
} |
Nodes201506/第五周/20151011/11号补充/事件复习.html | zouyang2015/node-test | <!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>
<body>
</body>
</html>
<script>
function processThis(obj,fn){
return function(e){fn.call(obj)}
}
function bind(ele,type,fn){//DOM二级事件绑定的兼容问题,2:this的指向
if(ele.addEventListener){
ele.addEventListener(type,fn,false);
}else if(ele.attachEvent){
//ele.click=[];
//ele["click"]=[];
if(!ele["bind"+type]){
ele["bind"+type]=[];
}
var a=ele["bind"+type];
for(var i=0;i<a.length;i++){
if(a[i]==tempFn)return;
}
var tempFn=processThis(ele,fn);
tempFn.photo=fn;//为什么要加一个自定义属性photo,就是为了在unbind(移除)的时候,可以通过photo属性找到这个经过变形tempFn
//ele.tempFn=tempFn
a.push(tempFn);
ele.attachEvent("on"+type,tempFn);
}
}
function unbind(ele,type,fn){
if(ele.removeEventListener){
ele.removeEventListener(type,fn);
}else if(ele.detachEvent){
//ele.detachEvent("on"+type,fn);
var a=ele["bind"+type];
if(a&&a.length){
for(var i=0;i<a.length;i++){
if(a[i].photo==fn){
ele.detachEvent("on"+type,a[i]);
a.splice(i,1);
//a[i]=null;
return;
}
}
}
}
}
//别忘了on方法是解决什么问题:绑定事件上的方法的执行顺序问题
//on负责把需要绑定的方法按顺序保存到数组里
//run方法负责当事件触发的时候,按顺序遍历执行数组里的方法
function on(ele,type,fn){
//在on方法里,有一行代码,无论on执行几百万次,它只会心动一次
if(!ele["aEvent"+type]){
ele["aEvent"+type]=[];
//ele.attachEvent("on"+type,processThis(ele,run));
}
var a=ele["aEvent"+type];
for(var i=0;i<a.length;i++){
if(a[i]==fn)return;
}
a.push(fn);
bind(ele,type,run);//虽然bind在同一个事件上有可能会重复执行多次,然并卵(因为在bind里做着判断呢,run方法不会被重复绑定,所以这里bind即使执行n次,run也不会重复执行的问题)
//ele["on"+type]=run;//68行相当于这样的写
}
/*bind(ele,type,run);//fn1,click,mousedown,mousemove,
bind(ele,"mouseover",run);
bind(ele,*/
//我们绑定的是run,不fn1--fn13;那个方法直接绑定给了事件,则系统会把事件对象传纵使 这个方法,也就是说系统会把事件对象自动的赋给run的e参数。而不会传给fn1,如果fn1也需要事件对象,则应该由run再往下传递,传给fn1---fn13
function run(e){
a//这个a是个全局变量
e=e||window.event;//e是事件对象
var a=this["aEvent"+e.type];//e.type是指的当前事件的事件类型.这个数组和64行对应
for(var i=0;i<a.length;i++){
a[i].call(this,e);
}
}
function off(){
}
function fn1(e){alert(1);alert(e.type)}
function fn2(){alert(2)}
function fn3(){alert(3)}
function fn4(){alert(4)}
function fn5(){alert(5)}
function fn6(){alert(6)}
function fn7(){alert(7)}
function fn8(){alert(8)}
function fn9(){alert(9)}
function fn10(){alert(10)}
function fn11(){alert(11)}
function fn12(){alert(12)}
function fn13(){alert(13)}
var a=[];
a.push(fn1);
a.push(fn2);
a.push(fn3);
a.push(fn13);
bind(ele,"click",run);
</script>
|
index.html | pbarthelmes/pbarthelmes.github.io | <html>
<head>Foobar</head>
<body>
Foo && BAR
</body>
</html>
|
static/style.css | gregoryv/record-stuff | html { overflow: hidden; }
body {
font: 14pt Arial, sans-serif;
background: lightgrey;
margin: 40px 40px;
}
h1 {
text-align: center;
}
h1 span {
font-size: 0.6em;
}
#controls {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
height: 20%;
width: 100%;
}
#record.recording {
background: red;
background: -webkit-radial-gradient(center, ellipse cover, #ff0000 0%,lightgrey 75%,lightgrey 100%,#7db9e8 100%);
background: -moz-radial-gradient(center, ellipse cover, #ff0000 0%,lightgrey 75%,lightgrey 100%,#7db9e8 100%);
background: radial-gradient(center, ellipse cover, #ff0000 0%,lightgrey 75%,lightgrey 100%,#7db9e8 100%);
} |
javadoc/3.2/org/robolectric/internal/bytecode/Intrinsics.html | robolectric/robolectric.github.io | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_102-google-v7) on Wed Jan 11 15:17:53 PST 2017 -->
<title>Intrinsics</title>
<meta name="date" content="2017-01-11">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Intrinsics";
}
}
catch(err) {
}
//-->
var methods = {"i0":9,"i1":10,"i2":9,"i3":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/robolectric/internal/bytecode/InstrumentingClassLoader.TryCatch.html" title="class in org.robolectric.internal.bytecode"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.Impl.html" title="class in org.robolectric.internal.bytecode"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/robolectric/internal/bytecode/Intrinsics.html" target="_top">Frames</a></li>
<li><a href="Intrinsics.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li><a href="#nested.class.summary">Nested</a> | </li>
<li><a href="#enum.constant.summary">Enum Constants</a> | </li>
<li>Field | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#enum.constant.detail">Enum Constants</a> | </li>
<li>Field | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.robolectric.internal.bytecode</div>
<h2 title="Enum Intrinsics" class="title">Enum Intrinsics</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>java.lang.Enum<<a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a>></li>
<li>
<ul class="inheritance">
<li>org.robolectric.internal.bytecode.Intrinsics</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Serializable, java.lang.Comparable<<a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a>></dd>
</dl>
<hr>
<br>
<pre>public enum <span class="typeNameLabel">Intrinsics</span>
extends java.lang.Enum<<a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a>></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested.class.summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.Impl.html" title="class in org.robolectric.internal.bytecode">Intrinsics.Impl</a></span></code> </td>
</tr>
</table>
</li>
</ul>
<!-- =========== ENUM CONSTANT SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="enum.constant.summary">
<!-- -->
</a>
<h3>Enum Constant Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Constant Summary table, listing enum constants, and an explanation">
<caption><span>Enum Constants</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Enum Constant and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#ADJUST_LANGUAGE_CODE">ADJUST_LANGUAGE_CODE</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#ARRAYCOPY">ARRAYCOPY</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#AUTO_CLOSEABLE">AUTO_CLOSEABLE</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#CURRENT_TIME_MILLIS">CURRENT_TIME_MILLIS</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#ELDEST">ELDEST</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#FALLBACK_EVENT_HANDLER">FALLBACK_EVENT_HANDLER</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#GET_LAYOUT_DIRECTION_FROM_LOCALE">GET_LAYOUT_DIRECTION_FROM_LOCALE</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#I_WINDOW_SESSION">I_WINDOW_SESSION</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#INCREMENT_EXPECTED_ACTIVITY_COUNT">INCREMENT_EXPECTED_ACTIVITY_COUNT</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#LOAD_LIBRARY">LOAD_LIBRARY</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#LOG_E">LOG_E</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#MAKE_NEW_WINDOW">MAKE_NEW_WINDOW</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#NANO_TIME">NANO_TIME</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#POLICY_MANAGER">POLICY_MANAGER</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#TRACK_ACTIVITY">TRACK_ACTIVITY</a></span></code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static java.util.List<<a href="../../../../org/robolectric/internal/bytecode/MethodRef.html" title="class in org.robolectric.internal.bytecode">MethodRef</a>></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#allRefs--">allRefs</a></span>()</code> </td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="../../../../org/robolectric/internal/bytecode/MethodRef.html" title="class in org.robolectric.internal.bytecode">MethodRef</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#getRef--">getRef</a></span>()</code> </td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#valueOf-java.lang.String-">valueOf</a></span>(java.lang.String name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a>[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html#values--">values</a></span>()</code>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Enum">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Enum</h3>
<code>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>getClass, notify, notifyAll, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ ENUM CONSTANT DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="enum.constant.detail">
<!-- -->
</a>
<h3>Enum Constant Detail</h3>
<a name="ELDEST">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ELDEST</h4>
<pre>public static final <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a> ELDEST</pre>
</li>
</ul>
<a name="LOAD_LIBRARY">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>LOAD_LIBRARY</h4>
<pre>public static final <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a> LOAD_LIBRARY</pre>
</li>
</ul>
<a name="TRACK_ACTIVITY">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TRACK_ACTIVITY</h4>
<pre>public static final <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a> TRACK_ACTIVITY</pre>
</li>
</ul>
<a name="INCREMENT_EXPECTED_ACTIVITY_COUNT">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>INCREMENT_EXPECTED_ACTIVITY_COUNT</h4>
<pre>public static final <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a> INCREMENT_EXPECTED_ACTIVITY_COUNT</pre>
</li>
</ul>
<a name="AUTO_CLOSEABLE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>AUTO_CLOSEABLE</h4>
<pre>public static final <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a> AUTO_CLOSEABLE</pre>
</li>
</ul>
<a name="GET_LAYOUT_DIRECTION_FROM_LOCALE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>GET_LAYOUT_DIRECTION_FROM_LOCALE</h4>
<pre>public static final <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a> GET_LAYOUT_DIRECTION_FROM_LOCALE</pre>
</li>
</ul>
<a name="MAKE_NEW_WINDOW">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MAKE_NEW_WINDOW</h4>
<pre>public static final <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a> MAKE_NEW_WINDOW</pre>
</li>
</ul>
<a name="POLICY_MANAGER">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>POLICY_MANAGER</h4>
<pre>public static final <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a> POLICY_MANAGER</pre>
</li>
</ul>
<a name="FALLBACK_EVENT_HANDLER">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FALLBACK_EVENT_HANDLER</h4>
<pre>public static final <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a> FALLBACK_EVENT_HANDLER</pre>
</li>
</ul>
<a name="I_WINDOW_SESSION">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>I_WINDOW_SESSION</h4>
<pre>public static final <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a> I_WINDOW_SESSION</pre>
</li>
</ul>
<a name="NANO_TIME">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NANO_TIME</h4>
<pre>public static final <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a> NANO_TIME</pre>
</li>
</ul>
<a name="CURRENT_TIME_MILLIS">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CURRENT_TIME_MILLIS</h4>
<pre>public static final <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a> CURRENT_TIME_MILLIS</pre>
</li>
</ul>
<a name="ARRAYCOPY">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ARRAYCOPY</h4>
<pre>public static final <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a> ARRAYCOPY</pre>
</li>
</ul>
<a name="LOG_E">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>LOG_E</h4>
<pre>public static final <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a> LOG_E</pre>
</li>
</ul>
<a name="ADJUST_LANGUAGE_CODE">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ADJUST_LANGUAGE_CODE</h4>
<pre>public static final <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a> ADJUST_LANGUAGE_CODE</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="values--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>values</h4>
<pre>public static <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a>[] values()</pre>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
<pre>
for (Intrinsics c : Intrinsics.values())
System.out.println(c);
</pre></div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>an array containing the constants of this enum type, in the order they are declared</dd>
</dl>
</li>
</ul>
<a name="valueOf-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>valueOf</h4>
<pre>public static <a href="../../../../org/robolectric/internal/bytecode/Intrinsics.html" title="enum in org.robolectric.internal.bytecode">Intrinsics</a> valueOf(java.lang.String name)</pre>
<div class="block">Returns the enum constant of this type with the specified name.
The string must match <i>exactly</i> an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>name</code> - the name of the enum constant to be returned.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the enum constant with the specified name</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd>
<dd><code>java.lang.NullPointerException</code> - if the argument is null</dd>
</dl>
</li>
</ul>
<a name="getRef--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRef</h4>
<pre>public <a href="../../../../org/robolectric/internal/bytecode/MethodRef.html" title="class in org.robolectric.internal.bytecode">MethodRef</a> getRef()</pre>
</li>
</ul>
<a name="allRefs--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>allRefs</h4>
<pre>public static java.util.List<<a href="../../../../org/robolectric/internal/bytecode/MethodRef.html" title="class in org.robolectric.internal.bytecode">MethodRef</a>> allRefs()</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/robolectric/internal/bytecode/InstrumentingClassLoader.TryCatch.html" title="class in org.robolectric.internal.bytecode"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../org/robolectric/internal/bytecode/Intrinsics.Impl.html" title="class in org.robolectric.internal.bytecode"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/robolectric/internal/bytecode/Intrinsics.html" target="_top">Frames</a></li>
<li><a href="Intrinsics.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li><a href="#nested.class.summary">Nested</a> | </li>
<li><a href="#enum.constant.summary">Enum Constants</a> | </li>
<li>Field | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#enum.constant.detail">Enum Constants</a> | </li>
<li>Field | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
src/TDN/NewsletterBundle/Resources/views/Mail/newsletter.html | HamzaBendidane/tdnold | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Trucs de Nanas</title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-color: #E6F7F7;
}
body,td,th {
font-family: Arial, Helvetica, sans-serif;
}
-->
</style></head>
<body bgcolor="#E6F7F7" text="#000000" link="#752670" vlink="#752670" alink="#752670" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="640" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="right" style="font-family: Arial, Helvetica, sans-serif; font-size: 10px; color: #666666;">Pour voir la version en ligne, <a href="#">cliques ici !</a></td>
</tr>
</table>
<table width="640" border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td width="17" rowspan="3" align="left" valign="bottom"><table border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="17" align="left" valign="bottom"><img src="img_newsletter/bord_gauche avatar.gif" width="17" height="105" /></td>
<td width="107" align="center" valign="middle" bgcolor="#FFCCFF"><img src="img_newsletter/avatar.jpg" width="102" height="102" alt="avatar" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block;" /></td>
</tr>
</table></td>
<td height="123" colspan="4" align="left" valign="top"><a href="img_newsletter/top_logo.jpg" target="_blank"><img src="img_newsletter/top_logo.jpg" width="516" height="137" alt="Trucs De Nanas" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block;" border="0px" /></a></td>
</tr>
<tr>
<td width="14" height="29"> </td>
<td width="367" align="left" valign="middle" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #000;"><strong>De JUSTINE</strong><span style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color:#448A8A;"> / rédactrice en chef TDN</span></td>
<td width="128" align="right" valign="middle" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color:#448A8A;">Samedi 8 juin - 02h10</td>
<td width="11"> </td>
</tr>
<tr>
<td height="19" colspan="4" align="right" valign="bottom" bgcolor="#FFFFFF"><img src="img_newsletter/haut_bonplan.gif" width="85" height="19" /></td>
</tr>
<tr>
<td height="19" colspan="5" align="right" valign="top" bgcolor="#FFFFFF"><table width="620" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="268"> </td>
<td width="28"> </td>
<td colspan="2" rowspan="2" align="right" valign="top"><img src="img_newsletter/titre_bonplan.gif" width="323" height="51" alt="Bon plan du week-end" /></td>
</tr>
<tr>
<td rowspan="2" align="center" valign="middle" bgcolor="#E6F7F7"><img name="" src="" width="259" height="180" alt="" /></td>
<td> </td>
</tr>
<tr>
<td height="157"> </td>
<td width="294" align="left" valign="middle" style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #666666;">Lorem ipsum sed et eruditi deterruisset, perfecto rationibus eu per, ei sit magna temporibus. Mazim civibus id duo, an his aliquid fabellas, mundi vitae cetero duo eu. Id ius accusata scripserit, vel viderer fuisset ne, pro scaevola evertitur ad. <a href="#">en savoir plus</a></td>
<td width="30"> </td>
</tr>
</table></td>
</tr>
<tr>
<td colspan="5" align="center" valign="top" bgcolor="#FFFFFF"><img src="img_newsletter/foot_bonplan.gif" width="640" height="28" /></td>
</tr>
<tr>
<td height="254" colspan="5" align="center" valign="top" bgcolor="#FFFFFF"><table width="640" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="28" rowspan="2" align="left" valign="top"><img src="img_newsletter/left_bloc2.gif" width="28" height="254" /></td>
<td width="240" align="center" valign="top" bgcolor="#FCE7FE"><img src="img_newsletter/titre_astro.gif" width="240" height="81" alt="Ton Astro love" /></td>
<td width="34" rowspan="2" align="center" valign="top"><img src="img_newsletter/center_bloc2.gif" width="52" height="254" /></td>
<td width="297" align="center" valign="top"><img src="img_newsletter/titre_a-lire.gif" width="296" height="81" alt="A Lire absolument !" /></td>
<td width="41" rowspan="2" align="center" valign="top"><img src="img_newsletter/right_bloc2.gif" width="24" height="254" /></td>
</tr>
<tr>
<td align="center" valign="top" bgcolor="#FCE7FE" style="font-family: Arial, Helvetica, sans-serif; font-size: 15px; color: #00000;"><strong>SAGITTAIRE</strong> <p style="color: #92117E;"> Mercure fera son entrée dans votre Ciel. Résultat : la bonne entente avec votre conjoint ou partenaire s’en trouvera facilitée. Si vous êtes célibataire à la recherche de l’âme soeur.</p></td>
<td align="left" valign="top" style="font-family: Arial, Helvetica, sans-serif; font-size: 15px; color: #00000;"><strong>Titre du dossier</strong><br />
<table width="296" border="0" cellspacing="0" cellpadding="4">
<tr>
<td width="94" height="114" align="center" valign="middle" bgcolor="#E6F7F7"><img src="" width="110" height="110" alt="" /></td>
<td width="6"> </td>
<td width="184" rowspan="2" align="left" valign="top" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #666666;">Lorem ipsum sed et eruditi deterruisset, perfecto rationibus eu per, ei sit magna temporibus. Mazim civibus id duo, an his aliquid fabellas...<br />
<a href="#">en savoir plus</a><br /></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
</td>
</tr>
</table></td>
</tr>
<tr>
<td colspan="5" align="center" valign="top" bgcolor="#FFFFFF"><img src="img_newsletter/foot_bloc2.gif" width="640" height="35" /></td>
</tr>
<tr>
<td colspan="5" align="right" valign="top" bgcolor="#FFFFFF"><img src="img_newsletter/haut_publi.gif" width="85" height="19" /></td>
</tr>
<tr>
<td colspan="5" align="right" valign="top" bgcolor="#FFFFFF"><table width="620" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="268"> </td>
<td width="28"> </td>
<td colspan="2" rowspan="2" align="right" valign="top"><img src="img_newsletter/titre_publi.gif" width="323" height="51" alt="Publi-Communiqué" /></td>
</tr>
<tr>
<td rowspan="2" align="center" valign="middle" bgcolor="#E6F7F7"><img name="" src="" width="259" height="180" alt="" /></td>
<td> </td>
</tr>
<tr>
<td height="157"> </td>
<td width="294" align="left" valign="middle" style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #666666;">Lorem ipsum sed et eruditi deterruisset, perfecto rationibus eu per, ei sit magna temporibus. Mazim civibus id duo, an his aliquid fabellas, mundi vitae cetero duo eu. Id ius accusata scripserit, vel viderer fuisset ne, pro scaevola evertitur ad. <a href="#">en savoir plus</a></td>
<td width="30"> </td>
</tr>
</table></td>
</tr>
<tr>
<td colspan="5" align="center" valign="top" bgcolor="#FFFFFF"><img src="img_newsletter/foot_publi.gif" alt="" width="640" height="28" /></td>
</tr>
<tr>
<td colspan="5" align="center" valign="top" bgcolor="#FFFFFF"><table width="640" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="18" align="left" valign="top"><img src="img_newsletter/left_bloc3.gif" width="18" height="301" /></td>
<td width="271" align="center" valign="top"><table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center" valign="top"><img src="img_newsletter/titre_video.gif" width="299" height="67" alt="Vidéo Buzz" /></td>
</tr>
<tr>
<td height="196" align="center" valign="middle" bgcolor="#E6F7F7"> </td>
</tr>
<tr>
<td height="21" align="right" valign="middle" style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #666666;">MIRROR MIRROR</td>
</tr>
</table></td>
<td width="56" align="center" valign="top"><img src="img_newsletter/center_bloc3.gif" width="56" height="301" /></td>
<td width="263" align="center" valign="top" bgcolor="#F5EE74"><table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="3" bgcolor="#F5EE74"><img src="img_newsletter/titre_questions.gif" width="236" height="94" alt="Quastions de nanas" /></td>
</tr>
<tr>
<td height="45" colspan="3" align="center" valign="top" bgcolor="#F5EE74" style="font-family: Arial, Helvetica, sans-serif; font-size: 15px; color: #00000;"><strong>Comment bien s’hydrater le corps ?<br />
<br />
</strong></td>
</tr>
<tr>
<td width="35" height="85" bgcolor="#F5EE74"> </td>
<td width="167" align="center" valign="middle" bgcolor="#E6F7F7"> </td>
<td width="34" bgcolor="#F5EE74"> </td>
</tr>
<tr>
<td colspan="3" align="center" bgcolor="#F5EE74"><a href="#"><img src="img_newsletter/bt_ose.gif" width="236" height="34" alt="Ose, donne ton avis !" border="0px" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block;"/></a></td>
</tr>
<tr>
<td colspan="3" bgcolor="#F5EE74"><img src="img_newsletter/foot_question.gif" width="236" height="34" /></td>
</tr>
</table></td>
<td width="32" align="right" valign="top"><img src="img_newsletter/right_bloc3.gif" width="31" height="301" /></td>
</tr>
</table></td>
</tr>
<tr>
<td colspan="5"><a href="#"><img src="img_newsletter/mytdn.gif" width="640" height="59" alt="MyTDN" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block;" border="0px" /></a></td>
</tr>
<tr>
<td colspan="5" align="center" valign="top"><table width="640" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="310" height="39" align="center" valign="top"><table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center" valign="top"><img src="img_newsletter/1-vine.gif" width="35" height="34" alt="Vine" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block;" border="0px" /></td>
<td align="center" valign="top"><a href="http://www.facebook.com/group.php?gid=6191176439" target="_blank"><img src="img_newsletter/2-facebook.gif" width="38" height="34" alt="Facebook" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block;" border="0px" /></a></td>
<td align="center" valign="top"><a href="http://www.twitter.com/Trucdenana" target="_blank"><img src="img_newsletter/3-twitter.gif" width="35" height="34" alt="Twitter" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block;" border="0px"/></a></td>
<td align="center" valign="top"><a href="http://www.hellocoton.fr/mapage/trucdenana" target="_blank"><img src="img_newsletter/4-instragram.gif" width="35" height="34" alt="HelloCoton" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block;" border="0px"/></a></td>
<td align="center" valign="top"><a href="itms://itunes.apple.com/fr/app/truc-de-nana/id369735750?mt=8" target="_blank"><img src="img_newsletter/5-appli.gif" width="35" height="34" alt="Appli TDN Apple store" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block;" border="0px"/></a></td>
</tr>
</table></td>
<td width="330" rowspan="2" align="right" valign="top"><a href="#"><img src="img_newsletter/au-feminin.gif" width="330" height="67" alt="aufeminin.com" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block;" border="0px"/></a></td>
</tr>
<tr>
<td align="center" valign="middle" style="font-family: Arial, Helvetica, sans-serif; font-size: 10px; color: #666666;">Pour te déshabonner à cette newletter, <a href="#">cliques ici !</a></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
|
017VMKBExplained.html | kfalconspb/virtuallybollinger.com | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="VMware Knowledge Base Explained KB's What and Where">
<meta name="author" content="Scott Bollinger/@kfalconspb">
<link rel="alternate" type="application/rss+xml" title="VirtuallyBollinger.com RSS Feed Virtualization VMware Citrix Microsoft and Linux by Scott Bollinger @kfalconspb" href="rss.xml" />
<title>VMware Knowledge Base Explained KB's What and Where</title>
<!-- Bootstrap Core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Theme CSS -->
<link href="css/clean-blog.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-P4B8LBQ"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Navigation -->
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
Menu <i class="fa fa-bars"></i>
</button>
<a class="navbar-brand" href="index.html">VirtuallyBollinger.com</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="https://scott-bollinger.com/about.html" target="_blank">About</a>
</li>
<li>
<a href="https://scott-bollinger.com/disclaimer.html" target="_blank">Disclaimer</a>
</li>
<li>
<a href="https://scott-bollinger.com/infoFireHose.html" target="_blank">infoFireHose</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Page Header -->
<!-- Set your background image for this header on the line below. -->
<header class="intro-header" style="background-image: url('https://scott-bollinger.com/img/asset-248.jpg')">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="post-heading">
<h1>VMware Knowledge Base Explained</h1>
<h2 class="subheading">KB's What and Where</h2>
<span class="meta">Posted by <a href="https://scott-bollinger.com/about.html" target="_blank">Scott Bollinger</a> / <a href="https://twitter.com/kfalconspb" target="_blank">@kfalconspb</a> on September 14, 2016</span>
</div>
</div>
</div>
</div>
</header>
<!-- Post Content -->
<article>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<h3 class="section-heading">Foundation Topic</h3>
<p>My next VMware foundation topic is the VMware Knowledge Base[1].</p>
<p>It's a great online self help resource for finding solutions to your problems.</p>
<p>If you're having a problem or getting an error, it's probably not the first time someone has experienced that same issue.</p>
<p>On the off chance you are unique and figure it out, you can submit the fix and troubleshooting in a new Knowledge Base Article and be someone else's hero.</p>
<p>Take some time, before you actually need to use it, to look around and get familiar of where things are at.</p>
<p>Explore,</p>
<p><a href="https://scott-bollinger.com/about.html" target="_blank">Scott Bollinger</a> / <a href="https://twitter.com/kfalconspb">@kfalconspb</a></p>
<h3 class="section-heading"><a href="https://kb.vmware.com/" target="_blank">kb.vmware.com</a></h3>
<p>The VMware Knowledge Base can be found at [1] kb.vmware.com. As of this post it is designed like below. The design may change, but there are some good sections to keep an eye on. The Weekly Digest can catch you up in a hurry!</p>
<img class="img-responsive" src="https://scott-bollinger.com/img/kb4.png" alt="vSphere 6 Editions" />
<p>Learn more about Using the VMware Knowledge Base by reading the KB 878 [2]</p>
<p><img class="img-responsive" src="https://scott-bollinger.com/img/kb3.png" alt="vSphere 6 Editions"></p>
<p>Add new content. Help others from your pain.</p>
<img class="img-responsive" src="https://scott-bollinger.com/img/kb2.png" alt="Knowledge Base Article" />
<img class="img-responsive" src="https://scott-bollinger.com/img/kb1.png" alt="Knowledge Base Content Request" />
<h3 class="section-heading">References</h3>
<ol>
<li><a href="https://kb.vmware.com/" target="_blank">VMware Knowledge Base - https://kb.vmware.com/</a></li>
<li><a href="https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=878" target="_blank">Using the VMware Knowledge Base (878)</a></li>
</ol>
</div>
</div>
</div>
</article>
<hr>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<ul class="list-inline text-center">
<li>
<a href="https://twitter.com/kfalconspb/" target="_blank">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://www.facebook.com/ScottPBollinger/" target="_blank">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/kfalconspb/" target="_blank">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://www.instagram.com/kfalconspb/" target="_blank">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-instagram fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://github.com/kfalconspb/" target="_blank">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://www.youtube.com/user/LaboratoriumRattus/" target="_blank">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-youtube fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
<p class="copyright text-muted">Copyright © 2018 <a href="https://scott-bollinger.com/about.html" target="_blank">Scott Bollinger</a> / <a href="https://twitter.com/kfalconspb" target="_blank">@kfalconspb</a></p>
<p class="copyright text-muted">Please Also Visit: <a href="https://Scott-Bollinger.com">Scott-Bollinger.com</a>/<a href="https://PapaShell.com">PapaShell.com</a>/<a href="http://Sniffer.Fun">Sniffer.Fun</a>/<a href="http://VirtuallyBollinger.com">VirtuallyBollinger.com</a>/<a href="http://BollingerUSA.com">BollingerUSA.com</a></p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="vendor/jquery/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Theme JavaScript -->
<script src="js/clean-blog.min.js"></script>
</body>
</html> |
frontend/rs-demo-premium-discover.html | abutsa/jpv0 | <!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" content="SemiColonWeb" />
<!-- Stylesheets
============================================= -->
<link href="http://fonts.googleapis.com/css?family=Lato:300,400,400italic,600,700|Raleway:300,400,500,600,700,800,900|Lato%3A900%2C700" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="style.css" type="text/css" />
<link rel="stylesheet" href="css/dark.css" type="text/css" />
<link rel="stylesheet" href="css/font-icons.css" type="text/css" />
<link rel="stylesheet" href="css/animate.css" type="text/css" />
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css" />
<link rel="stylesheet" href="css/responsive.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lt IE 9]>
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]-->
<!-- SLIDER REVOLUTION 5.x CSS SETTINGS -->
<link rel="stylesheet" type="text/css" href="include/rs-plugin/css/settings.css" media="screen" />
<link rel="stylesheet" type="text/css" href="include/rs-plugin/css/layers.css">
<link rel="stylesheet" type="text/css" href="include/rs-plugin/css/navigation.css">
<!-- Document Title
============================================= -->
<title>Premium Discover - Revolution Slider | Canvas</title>
<style>
.demos-filter {
margin: 0;
text-align: right;
}
.demos-filter li {
list-style: none;
margin: 10px 0px;
}
.demos-filter li a {
display: block;
border: 0;
text-transform: uppercase;
letter-spacing: 1px;
color: #444;
}
.demos-filter li a:hover,
.demos-filter li.activeFilter a { color: #1ABC9C; }
@media (max-width: 991px) {
.demos-filter { text-align: center; }
.demos-filter li {
float: left;
width: 33.3%;
padding: 0 20px;
}
}
@media (max-width: 767px) {
.demos-filter li { width: 50%; }
}
</style>
</head>
<body class="stretched">
<!-- Document Wrapper
============================================= -->
<div id="wrapper" class="clearfix">
<!-- Header
============================================= -->
<header id="header" class="full-header">
<div id="header-wrap">
<div class="container clearfix">
<div id="primary-menu-trigger"><i class="icon-reorder"></i></div>
<!-- Logo
============================================= -->
<div id="logo">
<a href="index.html" class="standard-logo" data-dark-logo="images/logo-dark.png"><img src="images/logo.png" alt="Canvas Logo"></a>
<a href="index.html" class="retina-logo" data-dark-logo="images/logo-dark@2x.png"><img src="images/logo@2x.png" alt="Canvas Logo"></a>
</div><!-- #logo end -->
<!-- Primary Navigation
============================================= -->
<nav id="primary-menu">
<ul>
<li><a href="index.html"><div>Home</div></a>
<ul>
<li><a href="index-corporate.html"><div>Home - Corporate</div></a>
<ul>
<li><a href="index-corporate.html"><div>Corporate - Layout 1</div></a></li>
<li><a href="index-corporate-2.html"><div>Corporate - Layout 2</div></a></li>
<li><a href="index-corporate-3.html"><div>Corporate - Layout 3</div></a></li>
<li><a href="index-corporate-4.html"><div>Corporate - Layout 4</div></a></li>
</ul>
</li>
<li><a href="index-portfolio.html"><div>Home - Portfolio</div></a>
<ul>
<li><a href="index-portfolio.html"><div>Portfolio - Layout 1</div></a></li>
<li><a href="index-portfolio-2.html"><div>Portfolio - Layout 2</div></a></li>
<li><a href="index-portfolio-3.html"><div>Portfolio - Masonry</div></a></li>
<li><a href="index-portfolio-4.html"><div>Portfolio - AJAX</div></a></li>
</ul>
</li>
<li><a href="index-blog.html"><div>Home - Blog</div></a>
<ul>
<li><a href="index-blog.html"><div>Blog - Layout 1</div></a></li>
<li><a href="index-blog-2.html"><div>Blog - Layout 2</div></a></li>
<li><a href="index-blog-3.html"><div>Blog - Layout 3</div></a></li>
</ul>
</li>
<li><a href="index-shop.html"><div>Home - Shop</div></a>
<ul>
<li><a href="index-shop.html"><div>Shop - Layout 1</div></a></li>
<li><a href="index-shop-2.html"><div>Shop - Layout 2</div></a></li>
</ul>
</li>
<li><a href="index-magazine.html"><div>Home - Magazine</div></a>
<ul>
<li><a href="index-magazine.html"><div>Magazine - Layout 1</div></a></li>
<li><a href="index-magazine-2.html"><div>Magazine - Layout 2</div></a></li>
<li><a href="index-magazine-3.html"><div>Magazine - Layout 3</div></a></li>
</ul>
</li>
<li><a href="landing.html"><div>Home - Landing Page</div></a>
<ul>
<li><a href="landing.html"><div>Landing Page - Layout 1</div></a></li>
<li><a href="landing-2.html"><div>Landing Page - Layout 2</div></a></li>
<li><a href="landing-3.html"><div>Landing Page - Layout 3</div></a></li>
<li><a href="landing-4.html"><div>Landing Page - Layout 4</div></a></li>
<li><a href="landing-5.html"><div>Landing Page - Layout 5</div></a></li>
</ul>
</li>
<li><a href="index-fullscreen-image.html"><div>Home - Full Screen</div></a>
<ul>
<li><a href="index-fullscreen-image.html"><div>Full Screen - Image</div></a></li>
<li><a href="index-fullscreen-slider.html"><div>Full Screen - Slider</div></a></li>
<li><a href="index-fullscreen-video.html"><div>Full Screen - Video</div></a></li>
</ul>
</li>
<li><a href="index-onepage.html"><div>Home - One Page</div></a>
<ul>
<li><a href="index-onepage.html"><div>One Page - Default</div></a></li>
<li><a href="index-onepage-2.html"><div>One Page - Submenu</div></a></li>
<li><a href="index-onepage-3.html"><div>One Page - Dots Style</div></a></li>
</ul>
</li>
<li><a href="index-wedding.html"><div>Home - Wedding</div></a></li>
<li><a href="index-restaurant.html"><div>Home - Restaurant</div></a></li>
<li><a href="index-events.html"><div>Home - Events</div></a></li>
<li><a href="index-parallax.html"><div>Home - Parallax</div></a></li>
<li><a href="index-app-showcase.html"><div>Home - App Showcase</div></a></li>
</ul>
</li>
<li class="current"><a href="#"><div>Features</div></a>
<ul>
<li><a href="#"><div><i class="icon-stack"></i>Sliders</div></a>
<ul>
<li><a href="slider-revolution.html"><div>Revolution Slider</div></a>
<ul>
<li><a href="rs-demo-premium-concept.html"><div>Premium Templates</div></a></li>
<li><a href="slider-revolution.html"><div>Full Screen</div></a></li>
<li><a href="slider-revolution-fullwidth.html"><div>Full Width</div></a></li>
<li><a href="slider-revolution-kenburns.html"><div>Kenburns Effect</div></a></li>
<li><a href="slider-revolution-html5-videos.html"><div>HTML5 Video</div></a></li>
</ul>
</li>
<li><a href="slider-canvas.html"><div>Canvas Slider</div></a>
<ul>
<li><a href="slider-canvas.html"><div>Full Width</div></a></li>
<li><a href="slider-canvas-fade.html"><div>Fade Transition</div></a></li>
<li><a href="slider-canvas-autoplay.html"><div>Autoplay Feature</div></a></li>
<li><a href="slider-canvas-video-event.html"><div>Custom Video Event</div></a></li>
<li><a href="slider-canvas-pagination.html"><div>Pagination Navigation</div></a></li>
<li><a href="slider-canvas-3.html"><div>3 Columns</div></a></li>
<li><a href="slider-canvas-4.html"><div>4 Columns</div></a></li>
<li><a href="slider-canvas-5.html"><div>5 Columns</div></a></li>
</ul>
</li>
<li><a href="slider-flex.html"><div>Flex Slider</div></a>
<ul>
<li><a href="slider-flex.html"><div>Default Layout</div></a></li>
<li><a href="slider-flex-thumbs.html"><div>with Thumbs</div></a></li>
</ul>
</li>
<li><a href="slider-owl.html"><div>Owl Slider</div></a>
<ul>
<li><a href="slider-owl-full.html"><div>Full Width</div></a></li>
<li><a href="slider-owl.html"><div>Boxed Width</div></a></li>
<li><a href="slider-owl-videos.html"><div>Video Slider</div></a></li>
</ul>
</li>
<li><a href="static-parallax.html"><div>Static Media</div></a>
<ul>
<li><a href="static-parallax.html"><div>Static - Parallax</div></a></li>
<li><a href="static-image.html"><div>Static - Image</div></a></li>
<li><a href="static-thumbs-grid.html"><div>Static - Thumb Gallery</div></a></li>
<li><a href="static-html5-video.html"><div>Static - HTML5 Video</div></a></li>
<li><a href="static-embed-video.html"><div>Static - Embedded Video</div></a></li>
</ul>
</li>
<li><a href="slider-camera.html"><div>Camera Slider</div></a></li>
<li><a href="slider-elastic.html"><div>Elastic Slider</div></a></li>
<li><a href="slider-nivo.html"><div>Nivo Slider</div></a></li>
</ul>
</li>
<li><a href="widgets.html"><div><i class="icon-gift"></i>Widgets</div></a>
<ul>
<li><a href="widgets.html"><div>Links</div></a></li>
<li><a href="widgets.html"><div>Flickr Photostream</div></a></li>
<li><a href="widgets.html"><div>Dribbble Shots</div></a></li>
<li><a href="widgets.html"><div>Instagram Feed</div></a></li>
<li><a href="widgets.html"><div>Posts List</div></a></li>
<li><a href="widgets.html"><div>Twitter Feed</div></a></li>
<li><a href="widgets.html"><div>Tabbed Widgets</div></a></li>
<li><a href="widgets.html"><div>Carousel</div></a></li>
<li><a href="widgets.html"><div>Subscribers</div></a></li>
<li><a href="widgets.html"><div>Social Icons</div></a></li>
<li><a href="widgets.html"><div>Testimonials</div></a></li>
<li><a href="widgets.html"><div>Quick Contact</div></a></li>
<li><a href="widgets.html"><div>Tags Cloud</div></a></li>
<li><a href="widgets.html"><div>Video Embeds</div></a></li>
<li><a href="widgets.html"><div>Raw Text/HTML</div></a></li>
</ul>
</li>
<li><a href="#"><div><i class="icon-umbrella"></i>Headers</div></a>
<ul>
<li><a href="header-light.html"><div>Light Version</div></a></li>
<li><a href="header-dark.html"><div>Dark Version</div></a></li>
<li><a href="header-transparent.html"><div>Transparent</div></a></li>
<li><a href="header-semi-transparent.html"><div>Semi Transparent</div></a>
<ul>
<li><a href="header-semi-transparent.html"><div>Light Version</div></a></li>
<li><a href="header-semi-transparent-dark.html"><div>Dark Version</div></a></li>
</ul>
</li>
<li><a href="header-side-left.html"><div>Left Side Header</div></a>
<ul>
<li><a href="header-side-left.html"><div>Fixed Position</div></a></li>
<li><a href="header-side-left-open.html"><div>OnClick Open</div></a></li>
<li><a href="header-side-left-open-push.html"><div>Push Content</div></a></li>
</ul>
</li>
<li><a href="header-side-right.html"><div>Right Side Header</div></a>
<ul>
<li><a href="header-side-right.html"><div>Fixed Position</div></a></li>
<li><a href="header-side-right-open.html"><div>OnClick Open</div></a></li>
<li><a href="header-side-right-open-push.html"><div>Push Content</div></a></li>
</ul>
</li>
<li><a href="header-floating.html"><div>Floating Version</div></a></li>
<li><a href="static-sticky.html"><div>Static Sticky</div></a></li>
<li><a href="responsive-sticky.html"><div>Responsive Sticky</div></a></li>
<li><a href="logo-changer.html"><div>Alternate Logos</div></a></li>
<li><a href="alternate-mobile-menu.html"><div>Alternate Mobile Menu</div></a></li>
</ul>
</li>
<li><a href="side-panel.html"><div><i class="icon-line-layout"></i>Side Panel</div></a>
<ul>
<li><a href="side-panel-left-overlay.html"><div>Left Overlay</div></a></li>
<li><a href="side-panel-left-push.html"><div>Left Push</div></a></li>
<li><a href="side-panel-right-overlay.html"><div>Right Overlay</div></a></li>
<li><a href="side-panel.html"><div>Right Push</div></a></li>
<li><a href="side-panel-light.html"><div>Light Background</div></a></li>
</ul>
</li>
<li><a href="#"><div><i class="icon-align-justify2"></i>Menu Styles</div></a>
<ul>
<li><a href="header-light.html"><div>Menu - Style 1</div></a></li>
<li><a href="menu-2.html"><div>Menu - Style 2</div></a></li>
<li><a href="menu-3.html"><div>Menu - Style 3</div></a></li>
<li><a href="menu-4.html"><div>Menu - Style 4</div></a></li>
<li><a href="menu-5.html"><div>Menu - Style 5</div></a></li>
<li><a href="menu-6.html"><div>Menu - Style 6</div></a></li>
<li><a href="menu-7.html"><div>Menu - Style 7</div></a></li>
<li><a href="menu-8.html"><div>Menu - Style 8</div></a></li>
<li><a href="menu-9.html"><div>Menu - Style 9</div></a></li>
<li><a href="menu-10.html"><div>Menu - Overlay</div></a></li>
</ul>
</li>
<li><a href="#"><div><i class="icon-ok-sign"></i>Page Titles</div></a>
<ul>
<li><a href="page.html"><div>Left Align</div></a></li>
<li><a href="page-title-right.html"><div>Right Align</div></a></li>
<li><a href="page-title-center.html"><div>Center Align</div></a></li>
<li><a href="page-titledark.html"><div>Dark Style</div></a></li>
<li><a href="page-title-pattern.html"><div>Pattern Background</div></a></li>
<li><a href="page-title-parallax.html"><div>Parallax Background</div></a>
<ul>
<li><a href="page-title-parallax.html"><div>Default Header</div></a></li>
<li><a href="page-title-parallax-header.html"><div>Transparent Header</div></a></li>
</ul>
</li>
<li><a href="page-title-video.html"><div>HTML5 Video</div></a></li>
<li><a href="page-title-nobg.html"><div>No Background</div></a></li>
<li><a href="page-title-mini.html"><div>Mini Version</div></a></li>
</ul>
</li>
<li><a href="contact.html"><div><i class="icon-envelope-alt"></i>Contact Pages</div></a>
<ul>
<li><a href="contact.html">Contact 1</a></li>
<li><a href="contact-2.html">Contact 2</a></li>
<li><a href="contact-3.html">Contact 3</a></li>
<li><a href="contact-4.html">Contact 4</a></li>
<li><a href="contact-5.html">Contact 5</a></li>
<li><a href="contact-6.html">Contact 6</a></li>
<li><a href="contact-7.html">Contact 7</a></li>
</ul>
</li>
<li><a href="#footer" data-scrollto="#footer"><div><i class="icon-th"></i>Footers</div></a>
<ul>
<li><a href="sticky-footer.html"><div>Sticky Footer</div></a></li>
<li><a href="#footer" data-scrollto="#footer"><div>Footer - Layout 1</div></a></li>
<li><a href="footer-2.html#footer"><div>Footer - Layout 2</div></a></li>
<li><a href="footer-3.html#footer"><div>Footer - Layout 3</div></a></li>
<li><a href="footer-4.html#footer"><div>Footer - Layout 4</div></a></li>
<li><a href="footer-5.html#footer"><div>Footer - Layout 5</div></a></li>
<li><a href="footer-6.html#footer"><div>Footer - Layout 6</div></a></li>
<li><a href="footer-7.html#footer"><div>Footer - Layout 7</div></a></li>
</ul>
</li>
<li><a href="#"><div><i class="icon-calendar3"></i>Events</div></a>
<ul>
<li><a href="events-calendar.html"><div>Full Width Calendar</div></a></li>
<li><a href="events-list.html"><div>Events List</div></a>
<ul>
<li><a href="events-list.html"><div>Right Sidebar</div></a></li>
<li><a href="events-list-left-sidebar.html"><div>Left Sidebar</div></a></li>
<li><a href="events-list-both-sidebar.html"><div>Both Sidebar</div></a></li>
<li><a href="events-list-fullwidth.html"><div>Full Width</div></a></li>
<li><a href="events-list-parallax.html"><div>Parallax List</div></a></li>
</ul>
</li>
<li><a href="event-single.html"><div>Single Event</div></a>
<ul>
<li><a href="event-single-right-sidebar.html"><div>Right Sidebar</div></a></li>
<li><a href="event-single-left-sidebar.html"><div>Left Sidebar</div></a></li>
<li><a href="event-single-both-sidebar.html"><div>Both Sidebar</div></a></li>
<li><a href="event-single.html"><div>Full Width</div></a></li>
</ul>
</li>
<li><a href="event-single-full-width-image.html"><div>Single Event - Full</div></a>
<ul>
<li><a href="event-single-full-width-image.html"><div>Parallax Image</div></a></li>
<li><a href="event-single-full-width-map.html"><div>Google Map</div></a></li>
<li><a href="event-single-full-width-slider.html"><div>Slider Gallery</div></a></li>
<li><a href="event-single-full-width-video.html"><div>HTML5 Video</div></a></li>
</ul>
</li>
</ul>
</li>
<li><a href="modal-onload.html"><div><i class="icon-line-expand"></i>Modal OnLoad</div></a>
<ul>
<li><a href="modal-onload.html"><div>Simple Layout</div></a></li>
<li><a href="modal-onload-iframe.html"><div>Video iFrame</div></a></li>
<li><a href="modal-onload-subscribe.html"><div>Subscription Form</div></a></li>
<li><a href="modal-onload-common-height.html"><div>Common Height</div></a></li>
<li><a href="modal-onload-cookie.html"><div>Cookies Enabled</div></a></li>
</ul>
</li>
<li><a href="coming-soon.html"><div><i class="icon-time"></i>Coming Soon</div></a>
<ul>
<li><a href="coming-soon.html"><div>Simple Layout</div></a></li>
<li><a href="coming-soon-2.html"><div>Parallax Image</div></a></li>
<li><a href="coming-soon-3.html"><div>HTML5 Video</div></a></li>
</ul>
</li>
<li><a href="#"><div><i class="icon-adjust"></i>Dark Version</div></a></li>
</ul>
</li>
<li class="mega-menu"><a href="#"><div>Pages</div></a>
<div class="mega-menu-content style-2 clearfix">
<ul class="mega-menu-column col-md-3">
<li class="mega-menu-title"><a href="#"><div>Introduction</div></a>
<ul>
<li><a href="about.html"><div>About Us</div></a></li>
<li><a href="about-2.html"><div>About Us - Layout 2</div></a></li>
<li><a href="about-me.html"><div>About Me</div></a></li>
<li><a href="team.html"><div>Team Members</div></a></li>
<li><a href="jobs.html"><div>Careers</div></a></li>
<li><a href="side-navigation.html"><div>Side Navigation</div></a></li>
<li><a href="page-submenu.html"><div>Page Submenu</div></a></li>
<li><a href="sitemap.html"><div>Sitemap</div></a></li>
</ul>
</li>
</ul>
<ul class="mega-menu-column col-md-3">
<li class="mega-menu-title"><a href="#"><div>Utility</div></a>
<ul>
<li><a href="services.html"><div>Services - Layout 1</div></a></li>
<li><a href="services-2.html"><div>Services - Layout 2</div></a></li>
<li><a href="services-3.html"><div>Services - Layout 3</div></a></li>
<li><a href="faqs.html"><div>FAQs - Layout 1</div></a></li>
<li><a href="faqs-2.html"><div>FAQs - Layout 2</div></a></li>
<li><a href="faqs-3.html"><div>FAQs - Layout 3</div></a></li>
<li><a href="faqs-4.html"><div>FAQs - Layout 4</div></a></li>
<li><a href="maintenance.html"><div>Maintenance Page</div></a></li>
</ul>
</li>
</ul>
<ul class="mega-menu-column col-md-3">
<li class="mega-menu-title"><a href="#"><div>Layout Grids</div></a>
<ul>
<li><a href="full-width.html"><div>Full Width</div></a></li>
<li><a href="full-width-wide.html"><div>Full Width - Wide</div></a></li>
<li><a href="right-sidebar.html"><div>Right Sidebar</div></a></li>
<li><a href="left-sidebar.html"><div>Left Sidebar</div></a></li>
<li><a href="both-sidebar.html"><div>Both Sidebar</div></a></li>
<li><a href="both-right-sidebar.html"><div>Both Right Sidebar</div></a></li>
<li><a href="both-left-sidebar.html"><div>Both Left Sidebar</div></a></li>
<li><a href="blank-page.html"><div>Blank Page</div></a></li>
</ul>
</li>
</ul>
<ul class="mega-menu-column col-md-3">
<li class="mega-menu-title"><a href="#"><div>Miscellaneous</div></a>
<ul>
<li><a href="login-register.html"><div>Login/Register</div></a></li>
<li><a href="login-register-2.html"><div>Login/Register - Style 2</div></a></li>
<li><a href="login-register-3.html"><div>Login/Register - Style 3</div></a></li>
<li><a href="login-1.html"><div>Login - Style 1</div></a></li>
<li><a href="login-2.html"><div>Login - Style 2</div></a></li>
<li><a href="404.html"><div>404 - Simple Layout</div></a></li>
<li><a href="404-2.html"><div>404 - Parallax Image</div></a></li>
<li><a href="404-3.html"><div>404 - HTML5 Video</div></a></li>
</ul>
</li>
</ul>
</div>
</li>
<li class="mega-menu"><a href="#"><div>Portfolio</div></a>
<div class="mega-menu-content style-2 clearfix">
<ul class="mega-menu-column col-5">
<li class="mega-menu-title"><a href="#"><div>Grids</div></a>
<ul>
<li><a href="portfolio-1.html"><div>1 Column</div></a></li>
<li><a href="portfolio-2.html"><div>2 Columns</div></a></li>
<li><a href="portfolio-3.html"><div>3 Columns</div></a></li>
<li><a href="portfolio.html"><div>4 Columns</div></a></li>
<li><a href="portfolio-5.html"><div>5 Columns</div></a></li>
<li><a href="portfolio-6.html"><div>6 Columns</div></a></li>
</ul>
</li>
</ul>
<ul class="mega-menu-column col-5">
<li class="mega-menu-title"><a href="#"><div>Masonry</div></a>
<ul>
<li><a href="portfolio-mixed-masonry.html"><div>Mixed Columns</div></a></li>
<li><a href="portfolio-2-masonry.html"><div>2 Columns</div></a></li>
<li><a href="portfolio-3-masonry.html"><div>3 Columns</div></a></li>
<li><a href="portfolio-masonry.html"><div>4 Columns</div></a></li>
<li><a href="portfolio-5-masonry.html"><div>5 Columns</div></a></li>
<li><a href="portfolio-6-masonry.html"><div>6 Columns</div></a></li>
</ul>
</li>
</ul>
<ul class="mega-menu-column col-5">
<li class="mega-menu-title"><a href="#"><div>Loading Styles</div></a>
<ul>
<li><a href="portfolio.html"><div>jQuery Filter</div></a></li>
<li><a href="portfolio-pagination.html"><div>Pagination</div></a></li>
<li><a href="portfolio-jpagination.html"><div>jQuery Pagination</div></a></li>
<li><a href="portfolio-infinity-scroll.html"><div>Infinity Scroll</div></a></li>
<li><a href="portfolio-ajax.html"><div>AJAX In Page</div></a></li>
<li><a href="portfolio-ajax-in-modal.html"><div>AJAX In Modal</div></a></li>
</ul>
</li>
</ul>
<ul class="mega-menu-column col-5">
<li class="mega-menu-title"><a href="#"><div>Single Project</div></a>
<ul>
<li><a href="portfolio-single-extended.html"><div>Extended Item</div></a></li>
<li><a href="portfolio-single-fullwidth.html"><div>Parallax Image</div></a></li>
<li><a href="portfolio-single-gallery-full.html"><div>Slider Gallery</div></a></li>
<li><a href="portfolio-single-video-fullwidth-left-sidebar.html"><div>HTML5 Video</div></a></li>
<li><a href="portfolio-single-thumbs-right-sidebar.html"><div>Masonry Thumbs</div></a></li>
<li><a href="portfolio-single-video-both-sidebar.html"><div>Embed Video</div></a></li>
</ul>
</li>
</ul>
<ul class="mega-menu-column col-5">
<li class="mega-menu-title"><a href="#"><div>Layouts</div></a>
<ul>
<li><a href="portfolio-nomargin.html"><div>Default</div></a></li>
<li><a href="portfolio-1-alt-right-sidebar.html"><div>Right Sidebar</div></a></li>
<li><a href="portfolio-3-left-sidebar.html"><div>Left Sidebar</div></a></li>
<li><a href="portfolio-2-both-sidebar.html"><div>Both Sidebar</div></a></li>
<li><a href="portfolio-fullwidth-notitle.html"><div>100% Width</div></a></li>
<li><a href="portfolio-parallax.html"><div>Parallax</div></a></li>
</ul>
</li>
</ul>
</div>
</li>
<li class="mega-menu"><a href="#"><div>Blog</div></a>
<div class="mega-menu-content style-2 clearfix">
<ul class="mega-menu-column col-md-3">
<li class="mega-menu-title"><a href="#"><div>Default</div></a>
<ul>
<li><a href="blog.html"><div>Right Sidebar</div></a></li>
<li><a href="blog-left-sidebar.html"><div>Left Sidebar</div></a></li>
<li><a href="blog-both-sidebar.html"><div>Both Sidebar</div></a></li>
<li><a href="blog-full-width.html"><div>Full Width</div></a></li>
</ul>
</li>
<li class="mega-menu-title"><a href="#"><div>Timeline</div></a>
<ul>
<li><a href="blog-timeline-right-sidebar.html"><div>Right Sidebar</div></a></li>
<li><a href="blog-timeline-left-sidebar.html"><div>Left Sidebar</div></a></li>
<li><a href="blog-timeline.html"><div>Full Width</div></a></li>
</ul>
</li>
</ul>
<ul class="mega-menu-column col-md-3">
<li class="mega-menu-title"><a href="#"><div>Masonry</div></a>
<ul>
<li><a href="blog-masonry.html"><div>4 Columns</div></a></li>
<li><a href="blog-masonry-3.html"><div>3 Columns</div></a></li>
<li><a href="blog-masonry-2.html"><div>2 Columns</div></a></li>
<li><a href="blog-masonry-full.html"><div>100% Width</div></a></li>
</ul>
</li>
<li class="mega-menu-title"><a href="#"><div>Grid</div></a>
<ul>
<li><a href="blog-grid.html"><div>4 Columns</div></a></li>
<li><a href="blog-grid-3.html"><div>3 Columns</div></a></li>
<li><a href="blog-grid-2.html"><div>2 Columns</div></a></li>
</ul>
</li>
</ul>
<ul class="mega-menu-column col-md-3">
<li class="mega-menu-title"><a href="#"><div>Small Thumbs</div></a>
<ul>
<li><a href="blog-small-left-sidebar.html"><div>Left Sidebar</div></a></li>
<li><a href="blog-small.html"><div>Right Sidebar</div></a></li>
<li><a href="blog-small-both-sidebar.html"><div>Both Sidebar</div></a></li>
<li><a href="blog-small-full-width.html"><div>Full Width</div></a></li>
<li><a href="blog-small-alt.html"><div>Alternate Layout</div></a></li>
</ul>
</li>
<li class="mega-menu-title"><a href="#"><div>Item Splitting</div></a>
<ul>
<li><a href="blog-grid.html"><div>Pagination</div></a></li>
<li><a href="blog-masonry.html"><div>Infinite Scroll</div></a></li>
</ul>
</li>
</ul>
<ul class="mega-menu-column col-md-3">
<li class="mega-menu-title"><a href="#"><div>Single</div></a>
<ul>
<li><a href="blog-single.html"><div>Default Layout</div></a></li>
<li><a href="blog-single-left-sidebar.html"><div>Left Sidebar</div></a></li>
<li><a href="blog-single-full.html"><div>Full Width</div></a></li>
<li><a href="blog-single-small.html"><div>Small Image</div></a></li>
<li><a href="blog-single-split-right-sidebar.html"><div>Split Layout</div></a></li>
</ul>
</li>
<li class="mega-menu-title"><a href="#"><div>Comments Module</div></a>
<ul>
<li><a href="blog-single-left-sidebar.html#comments"><div>Facebook Comments</div></a></li>
<li><a href="blog-single-small.html#comments"><div>Disqus Comments</div></a></li>
</ul>
</li>
</ul>
</div>
</li>
<li><a href="shop.html"><div>Shop</div></a>
<ul>
<li><a href="shop.html"><div>4 Columns</div></a></li>
<li><a href="shop-3.html"><div>3 Columns</div></a>
<ul>
<li><a href="shop-3.html"><div>Full Width</div></a></li>
<li><a href="shop-3-right-sidebar.html"><div>Right Sidebar</div></a></li>
<li><a href="shop-3-left-sidebar.html"><div>Left Sidebar</div></a></li>
</ul>
</li>
<li><a href="shop-2.html"><div>2 Columns</div></a>
<ul>
<li><a href="shop-2-right-sidebar.html"><div>Right Sidebar</div></a></li>
<li><a href="shop-2-left-sidebar.html"><div>Left Sidebar</div></a></li>
<li><a href="shop-2-both-sidebar.html"><div>Both Sidebar</div></a></li>
</ul>
</li>
<li><a href="shop-1.html"><div>1 Columns</div></a>
<ul>
<li><a href="shop-1.html"><div>Full Width</div></a></li>
<li><a href="shop-1-right-sidebar.html"><div>Right Sidebar</div></a></li>
<li><a href="shop-1-left-sidebar.html"><div>Left Sidebar</div></a></li>
<li><a href="shop-1-both-sidebar.html"><div>Both Sidebar</div></a></li>
</ul>
</li>
<li><a href="shop-category-parallax.html"><div>Categories - Parallax</div></a></li>
<li><a href="shop-single.html"><div>Single Product</div></a>
<ul>
<li><a href="shop-single.html"><div>Full Width</div></a></li>
<li><a href="shop-single-right-sidebar.html"><div>Right Sidebar</div></a></li>
<li><a href="shop-single-left-sidebar.html"><div>Left Sidebar</div></a></li>
<li><a href="shop-single-both-sidebar.html"><div>Both Sidebar</div></a></li>
</ul>
</li>
<li><a href="cart.html"><div>Cart</div></a></li>
<li><a href="checkout.html"><div>Checkout</div></a></li>
</ul>
</li>
<li class="mega-menu"><a href="#"><div>Shortcodes</div></a>
<div class="mega-menu-content clearfix">
<ul class="mega-menu-column col-5">
<li><a href="animations.html"><div><i class="icon-magic"></i>Animations</div></a></li>
<li><a href="buttons.html"><div><i class="icon-link"></i>Buttons</div></a></li>
<li><a href="carousel.html"><div><i class="icon-heart3"></i>Carousel</div></a></li>
<li><a href="charts.html"><div><i class="icon-bar-chart"></i>Charts</div></a></li>
<li><a href="clients.html"><div><i class="icon-apple"></i>Clients</div></a></li>
<li><a href="columns-grids.html"><div><i class="icon-th-large"></i>Columns</div></a></li>
<li><a href="counters.html"><div><i class="icon-time"></i>Counters</div></a></li>
<li><a href="component-datatable.html"><div><i class="icon-table"></i>Data Tables</div></a></li>
<li><a href="component-datepicker.html"><div><i class="icon-calendar3"></i>Date & Time Pickers</div></a></li>
</ul>
<ul class="mega-menu-column col-5">
<li><a href="dividers.html"><div><i class="icon-indent-right"></i>Dividers</div></a></li>
<li><a href="featured-boxes.html"><div><i class="icon-lightbulb"></i>Icon Boxes</div></a></li>
<li><a href="gallery.html"><div><i class="icon-picture"></i>Galleries</div></a></li>
<li><a href="headings-dropcaps.html"><div><i class="icon-pencil2"></i>Heading Styles</div></a></li>
<li><a href="icon-lists.html"><div><i class="icon-list-alt"></i>Icon Lists</div></a></li>
<li><a href="labels-badges.html"><div><i class="icon-plus-sign"></i>Labels</div></a></li>
<li><a href="lightbox.html"><div><i class="icon-resize-full"></i>Lightbox</div></a></li>
<li><a href="component-editable.html"><div><i class="icon-edit"></i>Editable Fields</div></a></li>
<li><a href="component-uploads.html"><div><i class="icon-line-upload"></i>File Uploads</div></a></li>
</ul>
<ul class="mega-menu-column col-5">
<li><a href="lists-panels.html"><div><i class="icon-th-list"></i>Lists & Panels</div></a></li>
<li><a href="maps.html"><div><i class="icon-map-marker2"></i>Maps</div></a></li>
<li><a href="media-embeds.html"><div><i class="icon-play"></i>Media Embeds</div></a></li>
<li><a href="modal-popovers.html"><div><i class="icon-move"></i>Modal Boxes</div></a></li>
<li><a href="navigation.html"><div><i class="icon-align-justify2"></i>Navigations</div></a></li>
<li><a href="pagination-progress.html"><div><i class="icon-cogs"></i>Pagination</div></a></li>
<li><a href="pie-skills.html"><div><i class="icon-tasks"></i>Pies & Skills</div></a></li>
<li><a href="component-range-slider.html"><div><i class="icon-line-move"></i>Range Slider</div></a></li>
<li><a href="component-ratings.html"><div><i class="icon-star3"></i>Star Ratings</div></a></li>
</ul>
<ul class="mega-menu-column col-5">
<li><a href="pricing.html"><div><i class="icon-dollar"></i>Pricing Boxes</div></a></li>
<li><a href="process-steps.html"><div><i class="icon-thumbs-up"></i>Process Steps</div></a></li>
<li><a href="promo-boxes.html"><div><i class="icon-rocket"></i>Promo Boxes</div></a></li>
<li><a href="quotes-blockquotes.html"><div><i class="icon-quote-left"></i>Blockquotes</div></a></li>
<li><a href="responsive.html"><div><i class="icon-laptop2"></i>Responsive</div></a></li>
<li><a href="sections.html"><div><i class="icon-folder-open"></i>Sections</div></a></li>
<li><a href="social-icons.html"><div><i class="icon-facebook2"></i>Social Icons</div></a></li>
<li><a href="component-select-picker.html"><div><i class="icon-select"></i>Select Picker</div></a></li>
<li><a href="component-select-box.html"><div><i class="icon-line-columns"></i>Select Boxes</div></a></li>
</ul>
<ul class="mega-menu-column col-5">
<li><a href="style-boxes.html"><div><i class="icon-exclamation-sign"></i>Alert Boxes</div></a></li>
<li><a href="styled-icons.html"><div><i class="icon-flag2"></i>Styled Icons</div></a></li>
<li><a href="tables.html"><div><i class="icon-table"></i>Tables</div></a></li>
<li><a href="tabs.html"><div><i class="icon-star3"></i>Tabs</div></a></li>
<li><a href="testimonials-twitter.html"><div><i class="icon-user4"></i>Testimonials</div></a></li>
<li><a href="thumbnails-slider.html"><div><i class="icon-camera3"></i>Thumbnails</div></a></li>
<li><a href="toggles-accordions.html"><div><i class="icon-ok-circle"></i>Toggles</div></a></li>
<li><a href="component-radios-switches.html"><div><i class="icon-line-square-check"></i>Radios & Switches</div></a></li>
<li><a href="component-typeahead.html"><div><i class="icon-type"></i>Input Typeahead</div></a></li>
</ul>
</div>
</li>
</ul>
<!-- Top Cart
============================================= -->
<div id="top-cart">
<a href="#" id="top-cart-trigger"><i class="icon-shopping-cart"></i><span>5</span></a>
<div class="top-cart-content">
<div class="top-cart-title">
<h4>Shopping Cart</h4>
</div>
<div class="top-cart-items">
<div class="top-cart-item clearfix">
<div class="top-cart-item-image">
<a href="#"><img src="images/shop/small/1.jpg" alt="Blue Round-Neck Tshirt" /></a>
</div>
<div class="top-cart-item-desc">
<a href="#">Blue Round-Neck Tshirt</a>
<span class="top-cart-item-price">$19.99</span>
<span class="top-cart-item-quantity">x 2</span>
</div>
</div>
<div class="top-cart-item clearfix">
<div class="top-cart-item-image">
<a href="#"><img src="images/shop/small/6.jpg" alt="Light Blue Denim Dress" /></a>
</div>
<div class="top-cart-item-desc">
<a href="#">Light Blue Denim Dress</a>
<span class="top-cart-item-price">$24.99</span>
<span class="top-cart-item-quantity">x 3</span>
</div>
</div>
</div>
<div class="top-cart-action clearfix">
<span class="fleft top-checkout-price">$114.95</span>
<button class="button button-3d button-small nomargin fright">View Cart</button>
</div>
</div>
</div><!-- #top-cart end -->
<!-- Top Search
============================================= -->
<div id="top-search">
<a href="#" id="top-search-trigger"><i class="icon-search3"></i><i class="icon-line-cross"></i></a>
<form action="search.html" method="get">
<input type="text" name="q" class="form-control" value="" placeholder="Type & Hit Enter..">
</form>
</div><!-- #top-search end -->
</nav><!-- #primary-menu end -->
</div>
</div>
</header><!-- #header end -->
<!-- Content
============================================= -->
<section id="content">
<div class="content-wrap">
<div class="container clearfix">
<div class="heading-block noborder center">
<h3>Discover Possibilities</h3>
<span>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptates, laudantium?</span>
</div>
</div>
<div id="discover_wrapper" class="rev_slider_wrapper fullwidthbanner-container" data-alias="websitebuilder-discover1" style="margin:0px auto;background-color:transparent;padding:0px;margin-top:0px;margin-bottom:0px;">
<!-- START REVOLUTION SLIDER 5.2.5.4 fullwidth mode -->
<div id="discover" class="rev_slider fullwidthabanner" style="display:none;" data-version="5.2.5.4">
<ul> <!-- SLIDE -->
<li data-index="rs-80" data-transition="fade" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off" data-easein="default" data-easeout="default" data-masterspeed="default" data-rotate="0" data-saveperformance="off" data-title="Grid" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="">
<!-- MAIN IMAGE -->
<img src="include/rs-plugin/demos/assets/images/dummy.png" alt="" data-lazyload="include/rs-plugin/demos/assets/images/transparent.png" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="off" class="rev-slidebg" data-no-retina>
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<a class="tp-caption tp-resizeme ddd_mousebox tp-rs-menulink"
href="#discover" target="_self" id="slide-80-layer-16"
data-x="['left','left','left','center']" data-hoffset="['20','20','20','0']"
data-y="['top','top','top','top']" data-voffset="['32','22','32','22']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;skX:0px;rX:0;rY:0;rZ:0;z:0;s:300;e:Power2.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 1.00);zi:11;"
data-transform_in="y:20px;opacity:0;s:1000;e:Power4.easeOut;"
data-transform_out="auto:auto;s:500;e:Power2.easeInOut;"
data-start="250"
data-actions='[{"event":"click","action":"jumptoslide","slide":"rs-81","delay":""}]'
data-responsive_offset="on"
style="z-index: 5;cursor:pointer;"><img src="include/rs-plugin/demos/assets/images/dummy.png" alt="" data-ww="['390px','321px','239px','390px']" data-hh="['340px','280px','208px','340px']" data-lazyload="include/rs-plugin/demos/assets/images/discover1.jpg" data-no-retina> </a>
<!-- LAYER NR. 2 -->
<a class="tp-caption tp-resizeme ddd_mousebox tp-rs-menulink"
href="#discover" target="_self" id="slide-80-layer-17"
data-x="['center','center','center','center']" data-hoffset="['0','0','-1','0']"
data-y="['top','top','top','top']" data-voffset="['32','22','32','382']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;skX:0px;rX:0;rY:0;rZ:0;z:0;s:300;e:Power2.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 1.00);zi:11;"
data-transform_in="y:20px;opacity:0;s:1000;e:Power4.easeOut;"
data-transform_out="auto:auto;s:500;e:Power2.easeInOut;"
data-start="350"
data-actions='[{"event":"click","action":"jumptoslide","slide":"rs-82","delay":""}]'
data-responsive_offset="on"
style="z-index: 6;cursor:pointer;"><img src="include/rs-plugin/demos/assets/images/dummy.png" alt="" data-ww="['390px','321px','239px','390px']" data-hh="['340px','280px','208px','340px']" data-lazyload="include/rs-plugin/demos/assets/images/discover2.jpg" data-no-retina> </a>
<!-- LAYER NR. 3 -->
<a class="tp-caption tp-resizeme ddd_mousebox tp-rs-menulink"
href="#discover" target="_self" id="slide-80-layer-18"
data-x="['right','right','right','center']" data-hoffset="['20','20','21','0']"
data-y="['top','top','top','top']" data-voffset="['32','22','32','742']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;skX:0px;rX:0;rY:0;rZ:0;z:0;s:300;e:Power2.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 1.00);zi:11;"
data-transform_in="y:20px;opacity:0;s:1000;e:Power4.easeOut;"
data-transform_out="auto:auto;s:500;e:Power2.easeInOut;"
data-start="450"
data-actions='[{"event":"click","action":"jumptoslide","slide":"rs-83","delay":""}]'
data-responsive_offset="on"
style="z-index: 7;cursor:pointer;"><img src="include/rs-plugin/demos/assets/images/dummy.png" alt="" data-ww="['390px','321px','239px','390px']" data-hh="['695px','570px','426px','695px']" data-lazyload="include/rs-plugin/demos/assets/images/discover3.jpg" data-no-retina> </a>
<!-- LAYER NR. 4 -->
<a class="tp-caption tp-resizeme ddd_mousebox tp-rs-menulink"
href="#discover" target="_self" id="slide-80-layer-19"
data-x="['left','left','left','left']" data-hoffset="['20','20','20','45']"
data-y="['top','top','top','top']" data-voffset="['387','311','249','1457']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;skX:0px;rX:0;rY:0;rZ:0;z:0;s:300;e:Power2.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 1.00);zi:11;"
data-transform_in="y:20px;opacity:0;s:1000;e:Power4.easeOut;"
data-transform_out="auto:auto;s:500;e:Power2.easeInOut;"
data-start="550"
data-actions='[{"event":"click","action":"jumptoslide","slide":"rs-84","delay":""}]'
data-responsive_offset="on"
style="z-index: 8;cursor:pointer;"><img src="include/rs-plugin/demos/assets/images/dummy.png" alt="" data-ww="['795px','653px','488px','390px']" data-hh="['340px','280px','209px','167px']" data-lazyload="include/rs-plugin/demos/assets/images/discover4.jpg" data-no-retina> </a>
<!-- LAYER NR. 5 -->
<div class="tp-caption tp-resizeme nopointerevent rs-parallaxlevel-1"
id="slide-80-layer-4"
data-x="['left','left','left','center']" data-hoffset="['20','20','20','0']"
data-y="['top','top','top','top']" data-voffset="['190','136','124','166']"
data-fontsize="['20','20','18','25']"
data-lineheight="['30','30','25','30']"
data-width="['390','321','239','390']"
data-height="none"
data-whitespace="['nowrap','nowrap','normal','nowrap']"
data-transform_idle="o:1;"
data-transform_in="y:25px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-25px;opacity:0;s:500;e:Power3.easeInOut;"
data-mask_in="x:0;y:0px;"
data-mask_out="x:0;y:0;s:inherit;e:inherit;"
data-start="550"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
data-textAlign="center"
style="z-index: 9; min-width: 390px; max-width: 390px; white-space: nowrap; font-size: 20px; line-height: 30px; font-weight: 900; color: rgba(255, 255, 255, 1.00);font-family:Lato;text-align:center;">CITY PHOTOGRAPHY </div>
<!-- LAYER NR. 6 -->
<div class="tp-caption tp-resizeme nopointerevent rs-parallaxlevel-1"
id="slide-80-layer-10"
data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']"
data-y="['top','top','top','top']" data-voffset="['188','136','124','527']"
data-fontsize="['20','20','18','25']"
data-lineheight="['30','30','25','30']"
data-width="['390','321','239','390']"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_in="y:25px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-25px;opacity:0;s:500;e:Power3.easeInOut;"
data-mask_in="x:0;y:0;"
data-mask_out="x:0;y:0;s:inherit;e:inherit;"
data-start="650"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
data-textAlign="center"
style="z-index: 10; min-width: 390px; max-width: 390px; white-space: nowrap; font-size: 20px; line-height: 30px; font-weight: 900; color: rgba(255, 255, 255, 1.00);font-family:Lato;text-align:center;">FASHION TRENDS </div>
<!-- LAYER NR. 7 -->
<div class="tp-caption tp-resizeme nopointerevent rs-parallaxlevel-1"
id="slide-80-layer-14"
data-x="['right','right','right','center']" data-hoffset="['20','20','20','0']"
data-y="['top','top','top','top']" data-voffset="['346','276','234','1057']"
data-fontsize="['20','20','18','25']"
data-lineheight="['30','30','25','30']"
data-width="['390','321','239','390']"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_in="y:25px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-25px;opacity:0;s:500;e:Power3.easeInOut;"
data-mask_in="x:0;y:0;s:inherit;e:inherit;"
data-mask_out="x:0;y:0;s:inherit;e:inherit;"
data-start="750"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
data-textAlign="center"
style="z-index: 11; min-width: 390px; max-width: 390px; white-space: nowrap; font-size: 20px; line-height: 30px; font-weight: 900; color: rgba(255, 255, 255, 1.00);font-family:Lato;text-align:center;">TECHNOLOGICAL<br/>ADVANTAGE </div>
<!-- LAYER NR. 8 -->
<div class="tp-caption tp-resizeme nopointerevent rs-parallaxlevel-1"
id="slide-80-layer-20"
data-x="['left','left','left','center']" data-hoffset="['20','20','20','0']"
data-y="['top','top','top','top']" data-voffset="['561','447','341','1465']"
data-fontsize="['20','20','18','25']"
data-lineheight="['30','30','25','30']"
data-width="['795','653','488','390']"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_in="y:25px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-25px;opacity:0;s:500;e:Power3.easeInOut;"
data-mask_in="x:0;y:0;s:inherit;e:inherit;"
data-mask_out="x:0;y:0;s:inherit;e:inherit;"
data-start="850"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
data-textAlign="center"
style="z-index: 12; min-width: 795px; max-width: 795px; white-space: nowrap; font-size: 20px; line-height: 30px; font-weight: 900; color: rgba(255, 255, 255, 1.00);font-family:Lato;text-align:center;">NATURAL EXPLORATION </div>
</li>
<!-- SLIDE -->
<li data-index="rs-81" data-transition="fade" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off" data-easein="default" data-easeout="default" data-masterspeed="default" data-rotate="0" data-saveperformance="off" data-invisible="true" data-title="Item 1" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="">
<!-- MAIN IMAGE -->
<img src="include/rs-plugin/demos/assets/images/dummy.png" alt="" data-lazyload="include/rs-plugin/demos/assets/images/transparent.png" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="off" class="rev-slidebg" data-no-retina>
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption tp-resizeme"
id="slide-81-layer-1"
data-x="['left','left','left','center']" data-hoffset="['20','20','20','0']"
data-y="['top','top','top','top']" data-voffset="['30','24','42','32']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_in="y:20px;opacity:0;s:1000;e:Power4.easeOut;"
data-transform_out="auto:auto;s:500;e:Power2.easeInOut;"
data-start="500"
data-responsive_offset="on"
style="z-index: 5;cursor:pointer;"><img src="include/rs-plugin/demos/assets/images/dummy.png" alt="" data-ww="['1200px','984px','738px','1200px']" data-hh="['695px','570px','427px','695px']" data-lazyload="include/rs-plugin/demos/assets/images/discover1_detail-1.jpg" data-no-retina> </div>
<!-- LAYER NR. 2 -->
<div class="tp-caption tp-resizeme tp-svg-layer"
id="slide-81-layer-6"
data-x="['left','left','left','left']" data-hoffset="['45','45','20','0']"
data-y="['top','top','top','top']" data-voffset="['330','220','142','132']"
data-width="60"
data-height="60"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:150;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 0.75);"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-20px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="650"
data-actions='[{"event":"click","action":"jumptoslide","slide":"rs-84","delay":""}]'
data-svg_src="include/rs-plugin/demos/assets/images/ic_chevron_left_36px.svg"
data-svg_idle="sc:transparent;sw:0;sda:0;sdo:0;"
data-svg_hover="sc:transparent;sw:0;sda:0;sdo:0;"
data-responsive_offset="on"
style="z-index: 6; min-width: 60px; max-width: 60px; max-width: 60px; max-width: 60px; color: rgba(255, 255, 255, 1.00);cursor:pointer;"> </div>
<!-- LAYER NR. 3 -->
<div class="tp-caption tp-resizeme tp-svg-layer"
id="slide-81-layer-7"
data-x="['left','left','left','left']" data-hoffset="['84','84','60','40']"
data-y="['top','top','top','top']" data-voffset="['330','220','142','132']"
data-width="60"
data-height="60"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:150;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 0.75);"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-20px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="700"
data-actions='[{"event":"click","action":"jumptoslide","slide":"rs-82","delay":""}]'
data-svg_src="include/rs-plugin/demos/assets/images/ic_chevron_right_24px.svg"
data-svg_idle="sc:transparent;sw:0;sda:0;sdo:0;"
data-svg_hover="sc:transparent;sw:0;sda:0;sdo:0;"
data-responsive_offset="on"
style="z-index: 7; min-width: 60px; max-width: 60px; max-width: 60px; max-width: 60px; color: rgba(255, 255, 255, 1.00);cursor:pointer;"> </div>
<!-- LAYER NR. 4 -->
<div class="tp-caption tp-resizeme"
id="slide-81-layer-3"
data-x="['left','left','left','left']" data-hoffset="['60','60','40','20']"
data-y="['top','top','top','top']" data-voffset="['400','290','210','200']"
data-fontsize="['50','50','40','30']"
data-lineheight="['50','50','40','30']"
data-width="['480','480','400','320']"
data-height="none"
data-whitespace="normal"
data-transform_idle="o:1;"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-20px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="750"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 8; min-width: 480px; max-width: 480px; white-space: normal; font-size: 50px; line-height: 50px; font-weight: 900; color: rgba(255, 255, 255, 1.00);font-family:Lato;">PROJECT CITY PHOTOGRAPHY </div>
<!-- LAYER NR. 5 -->
<div class="tp-caption tp-resizeme"
id="slide-81-layer-4"
data-x="['left','left','left','left']" data-hoffset="['60','60','40','20']"
data-y="['top','top','top','top']" data-voffset="['514','409','314','277']"
data-width="['480','480','400','320']"
data-height="none"
data-whitespace="normal"
data-transform_idle="o:1;"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-20px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="800"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 9; min-width: 480px; max-width: 480px; white-space: normal; font-size: 20px; line-height: 25px; font-weight: 700; color: rgba(255, 255, 255, 0.75);font-family:Lato;">Bring to the table win-win survival strategies to ensure proactive domination. </div>
<!-- LAYER NR. 6 -->
<a class="tp-caption rev-btn tp-resizeme"
href="#" target="_blank" id="slide-81-layer-5"
data-x="['left','left','left','left']" data-hoffset="['60','60','40','20']"
data-y="['top','top','top','top']" data-voffset="['600','490','379','377']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:150;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 1.00);bg:rgba(255, 255, 255, 0);bc:rgba(255, 255, 255, 1.00);"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-10px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="850"
data-splitin="none"
data-splitout="none"
data-actions=''
data-responsive_offset="on"
style="z-index: 10; white-space: nowrap; font-size: 16px; line-height: 42px; font-weight: 700; color: rgba(255, 255, 255, 1.00);font-family:Lato;background-color:rgba(0, 173, 208, 1.00);padding:0px 28px 0px 28px;border-color:rgba(0, 173, 208, 1.00);border-style:solid;border-width:2px;border-radius:3px 3px 3px 3px;outline:none;box-shadow:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;cursor:pointer;">Visit Project Website </a>
<!-- LAYER NR. 7 -->
<div class="tp-caption tp-resizeme tp-svg-layer"
id="slide-81-layer-2"
data-x="['right','right','right','right']" data-hoffset="['30','27','21','10']"
data-y="['top','top','top','top']" data-voffset="['43','34','45','52']"
data-width="60"
data-height="60"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:150;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 0.75);"
data-transform_in="y:10px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="auto:auto;s:500;e:Power2.easeInOut;"
data-start="700"
data-actions='[{"event":"click","action":"jumptoslide","slide":"rs-80","delay":""}]'
data-svg_src="include/rs-plugin/demos/assets/images/ic_close_36px.svg"
data-svg_idle="sc:transparent;sw:0;sda:0;sdo:0;"
data-svg_hover="sc:transparent;sw:0;sda:0;sdo:0;"
data-responsive_offset="on"
style="z-index: 11; min-width: 60px; max-width: 60px; max-width: 60px; max-width: 60px; color: rgba(255, 255, 255, 1.00);cursor:pointer;"> </div>
</li>
<!-- SLIDE -->
<li data-index="rs-82" data-transition="fade" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off" data-easein="default" data-easeout="default" data-masterspeed="default" data-rotate="0" data-saveperformance="off" data-invisible="true" data-title="Item 2" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="">
<!-- MAIN IMAGE -->
<img src="include/rs-plugin/demos/assets/images/dummy.png" alt="" data-lazyload="include/rs-plugin/demos/assets/images/transparent.png" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="off" class="rev-slidebg" data-no-retina>
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption tp-resizeme"
id="slide-82-layer-1"
data-x="['left','left','left','center']" data-hoffset="['20','20','20','0']"
data-y="['top','top','top','top']" data-voffset="['30','22','22','22']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_in="y:20px;opacity:0;s:1000;e:Power4.easeOut;"
data-transform_out="auto:auto;s:500;e:Power2.easeInOut;"
data-start="500"
data-responsive_offset="on"
style="z-index: 5;cursor:pointer;"><img src="include/rs-plugin/demos/assets/images/dummy.png" alt="" data-ww="['1200px','984px','738px','1200px']" data-hh="['695px','570px','427px','695px']" data-lazyload="include/rs-plugin/demos/assets/images/discover2_detail-1.jpg" data-no-retina> </div>
<!-- LAYER NR. 2 -->
<div class="tp-caption tp-resizeme tp-svg-layer"
id="slide-82-layer-6"
data-x="['left','left','left','left']" data-hoffset="['45','45','20','0']"
data-y="['top','top','top','top']" data-voffset="['330','210','129','122']"
data-width="60"
data-height="60"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:150;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 0.75);"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-20px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="650"
data-actions='[{"event":"click","action":"jumptoslide","slide":"rs-81","delay":""}]'
data-svg_src="include/rs-plugin/demos/assets/images/ic_chevron_left_36px.svg"
data-svg_idle="sc:transparent;sw:0;sda:0;sdo:0;"
data-svg_hover="sc:transparent;sw:0;sda:0;sdo:0;"
data-responsive_offset="on"
style="z-index: 6; min-width: 60px; max-width: 60px; max-width: 60px; max-width: 60px; color: rgba(255, 255, 255, 1.00);cursor:pointer;"> </div>
<!-- LAYER NR. 3 -->
<div class="tp-caption tp-resizeme tp-svg-layer"
id="slide-82-layer-7"
data-x="['left','left','left','left']" data-hoffset="['84','84','56','40']"
data-y="['top','top','top','top']" data-voffset="['330','210','130','122']"
data-width="60"
data-height="60"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:150;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 0.75);"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-20px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="700"
data-actions='[{"event":"click","action":"jumptoslide","slide":"rs-83","delay":""}]'
data-svg_src="include/rs-plugin/demos/assets/images/ic_chevron_right_24px.svg"
data-svg_idle="sc:transparent;sw:0;sda:0;sdo:0;"
data-svg_hover="sc:transparent;sw:0;sda:0;sdo:0;"
data-responsive_offset="on"
style="z-index: 7; min-width: 60px; max-width: 60px; max-width: 60px; max-width: 60px; color: rgba(255, 255, 255, 1.00);cursor:pointer;"> </div>
<!-- LAYER NR. 4 -->
<div class="tp-caption tp-resizeme"
id="slide-82-layer-3"
data-x="['left','left','left','left']" data-hoffset="['60','61','39','20']"
data-y="['top','top','top','top']" data-voffset="['400','278','188','180']"
data-fontsize="['50','50','40','30']"
data-lineheight="['50','50','40','30']"
data-width="['480','480','400','320']"
data-height="none"
data-whitespace="normal"
data-transform_idle="o:1;"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-20px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="750"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 8; min-width: 480px; max-width: 480px; white-space: normal; font-size: 50px; line-height: 50px; font-weight: 900; color: rgba(255, 255, 255, 1.00);font-family:Lato;">PROJECT FASHION TRENDS </div>
<!-- LAYER NR. 5 -->
<div class="tp-caption tp-resizeme"
id="slide-82-layer-4"
data-x="['left','left','left','left']" data-hoffset="['60','59','40','20']"
data-y="['top','top','top','top']" data-voffset="['514','392','283','247']"
data-width="['480','480','400','320']"
data-height="none"
data-whitespace="normal"
data-transform_idle="o:1;"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-20px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="800"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 9; min-width: 480px; max-width: 480px; white-space: normal; font-size: 20px; line-height: 25px; font-weight: 700; color: rgba(255, 255, 255, 0.75);font-family:Lato;">Bring to the table win-win survival strategies to ensure proactive domination. </div>
<!-- LAYER NR. 6 -->
<a class="tp-caption rev-btn tp-resizeme"
href="#" target="_blank" id="slide-82-layer-5"
data-x="['left','left','left','left']" data-hoffset="['60','60','40','20']"
data-y="['top','top','top','top']" data-voffset="['600','472','346','337']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:150;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 1.00);bg:rgba(255, 255, 255, 0);bc:rgba(255, 255, 255, 1.00);"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-10px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="850"
data-splitin="none"
data-splitout="none"
data-actions=''
data-responsive_offset="on"
style="z-index: 10; white-space: nowrap; font-size: 16px; line-height: 42px; font-weight: 700; color: rgba(255, 255, 255, 1.00);font-family:Lato;background-color:rgba(0, 173, 208, 1.00);padding:0px 28px 0px 28px;border-color:rgba(0, 173, 208, 1.00);border-style:solid;border-width:2px;border-radius:3px 3px 3px 3px;outline:none;box-shadow:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;cursor:pointer;">Visit Project Website </a>
<!-- LAYER NR. 7 -->
<div class="tp-caption tp-resizeme tp-svg-layer"
id="slide-82-layer-2"
data-x="['right','right','right','right']" data-hoffset="['28','21','15','10']"
data-y="['top','top','top','top']" data-voffset="['41','28','21','32']"
data-width="60"
data-height="60"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:150;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 0.75);"
data-transform_in="y:10px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="auto:auto;s:500;e:Power2.easeInOut;"
data-start="700"
data-actions='[{"event":"click","action":"jumptoslide","slide":"rs-80","delay":""}]'
data-svg_src="include/rs-plugin/demos/assets/images/ic_close_36px.svg"
data-svg_idle="sc:transparent;sw:0;sda:0;sdo:0;"
data-svg_hover="sc:transparent;sw:0;sda:0;sdo:0;"
data-responsive_offset="on"
style="z-index: 11; min-width: 60px; max-width: 60px; max-width: 60px; max-width: 60px; color: rgba(255, 255, 255, 1.00);cursor:pointer;"> </div>
</li>
<!-- SLIDE -->
<li data-index="rs-83" data-transition="fade" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off" data-easein="default" data-easeout="default" data-masterspeed="default" data-rotate="0" data-saveperformance="off" data-invisible="true" data-title="Item 3" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="">
<!-- MAIN IMAGE -->
<img src="include/rs-plugin/demos/assets/images/dummy.png" alt="" data-lazyload="include/rs-plugin/demos/assets/images/transparent.png" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="off" class="rev-slidebg" data-no-retina>
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption tp-resizeme"
id="slide-83-layer-1"
data-x="['left','left','left','center']" data-hoffset="['20','20','21','0']"
data-y="['top','top','top','top']" data-voffset="['32','32','24','32']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_in="y:20px;opacity:0;s:1000;e:Power4.easeOut;"
data-transform_out="auto:auto;s:500;e:Power2.easeInOut;"
data-start="500"
data-responsive_offset="on"
style="z-index: 5;cursor:pointer;"><img src="include/rs-plugin/demos/assets/images/dummy.png" alt="" data-ww="['1200px','984px','738px','1200px']" data-hh="['695px','570px','427px','695px']" data-lazyload="include/rs-plugin/demos/assets/images/discover3_detail.jpg" data-no-retina> </div>
<!-- LAYER NR. 2 -->
<div class="tp-caption tp-resizeme tp-svg-layer"
id="slide-83-layer-6"
data-x="['left','left','left','left']" data-hoffset="['45','45','20','0']"
data-y="['top','top','top','top']" data-voffset="['330','173','132','82']"
data-width="60"
data-height="60"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:150;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 0.75);"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-20px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="650"
data-actions='[{"event":"click","action":"jumptoslide","slide":"rs-82","delay":""}]'
data-svg_src="include/rs-plugin/demos/assets/images/ic_chevron_left_36px.svg"
data-svg_idle="sc:transparent;sw:0;sda:0;sdo:0;"
data-svg_hover="sc:transparent;sw:0;sda:0;sdo:0;"
data-responsive_offset="on"
style="z-index: 6; min-width: 60px; max-width: 60px; max-width: 60px; max-width: 60px; color: rgba(255, 255, 255, 1.00);cursor:pointer;"> </div>
<!-- LAYER NR. 3 -->
<div class="tp-caption tp-resizeme tp-svg-layer"
id="slide-83-layer-7"
data-x="['left','left','left','left']" data-hoffset="['84','85','60','40']"
data-y="['top','top','top','top']" data-voffset="['330','172','132','82']"
data-width="60"
data-height="60"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:150;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 0.75);"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-20px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="700"
data-actions='[{"event":"click","action":"jumptoslide","slide":"rs-84","delay":""}]'
data-svg_src="include/rs-plugin/demos/assets/images/ic_chevron_right_24px.svg"
data-svg_idle="sc:transparent;sw:0;sda:0;sdo:0;"
data-svg_hover="sc:transparent;sw:0;sda:0;sdo:0;"
data-responsive_offset="on"
style="z-index: 7; min-width: 60px; max-width: 60px; max-width: 60px; max-width: 60px; color: rgba(255, 255, 255, 1.00);cursor:pointer;"> </div>
<!-- LAYER NR. 4 -->
<div class="tp-caption tp-resizeme"
id="slide-83-layer-3"
data-x="['left','left','left','left']" data-hoffset="['60','61','41','20']"
data-y="['top','top','top','top']" data-voffset="['400','247','190','140']"
data-fontsize="['50','50','40','30']"
data-lineheight="['50','50','40','30']"
data-width="['480','480','400','320']"
data-height="none"
data-whitespace="normal"
data-transform_idle="o:1;"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-20px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="750"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 8; min-width: 480px; max-width: 480px; white-space: normal; font-size: 50px; line-height: 50px; font-weight: 900; color: rgba(255, 255, 255, 1.00);font-family:Lato;">PROJECT TECHNOLOGICAL ADVANTAGE </div>
<!-- LAYER NR. 5 -->
<div class="tp-caption tp-resizeme"
id="slide-83-layer-4"
data-x="['left','left','left','left']" data-hoffset="['60','62','40','20']"
data-y="['top','top','top','top']" data-voffset="['564','408','321','247']"
data-width="['480','480','400','320']"
data-height="none"
data-whitespace="normal"
data-transform_idle="o:1;"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-20px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="800"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 9; min-width: 480px; max-width: 480px; white-space: normal; font-size: 20px; line-height: 25px; font-weight: 700; color: rgba(255, 255, 255, 0.75);font-family:Lato;">Bring to the table win-win survival strategies to ensure proactive domination. </div>
<!-- LAYER NR. 6 -->
<a class="tp-caption rev-btn tp-resizeme"
href="#" target="_blank" id="slide-83-layer-5"
data-x="['left','left','left','left']" data-hoffset="['60','65','43','20']"
data-y="['top','top','top','top']" data-voffset="['649','483','385','337']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:150;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 1.00);bg:rgba(255, 255, 255, 0);bc:rgba(255, 255, 255, 1.00);"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-10px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="850"
data-splitin="none"
data-splitout="none"
data-actions=''
data-responsive_offset="on"
style="z-index: 10; white-space: nowrap; font-size: 16px; line-height: 42px; font-weight: 700; color: rgba(255, 255, 255, 1.00);font-family:Lato;background-color:rgba(0, 173, 208, 1.00);padding:0px 28px 0px 28px;border-color:rgba(0, 173, 208, 1.00);border-style:solid;border-width:2px;border-radius:3px 3px 3px 3px;outline:none;box-shadow:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;cursor:pointer;">Visit Project Website </a>
<!-- LAYER NR. 7 -->
<div class="tp-caption tp-resizeme tp-svg-layer"
id="slide-83-layer-2"
data-x="['right','right','right','right']" data-hoffset="['25','20','14','10']"
data-y="['top','top','top','top']" data-voffset="['39','34','23','32']"
data-width="60"
data-height="60"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:150;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 0.75);"
data-transform_in="y:10px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="auto:auto;s:500;e:Power2.easeInOut;"
data-start="700"
data-actions='[{"event":"click","action":"jumptoslide","slide":"rs-80","delay":""}]'
data-svg_src="include/rs-plugin/demos/assets/images/ic_close_36px.svg"
data-svg_idle="sc:transparent;sw:0;sda:0;sdo:0;"
data-svg_hover="sc:transparent;sw:0;sda:0;sdo:0;"
data-responsive_offset="on"
style="z-index: 11; min-width: 60px; max-width: 60px; max-width: 60px; max-width: 60px; color: rgba(255, 255, 255, 1.00);cursor:pointer;"> </div>
</li>
<!-- SLIDE -->
<li data-index="rs-84" data-transition="fade" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off" data-easein="default" data-easeout="default" data-masterspeed="default" data-rotate="0" data-saveperformance="off" data-invisible="true" data-title="Item 4" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="">
<!-- MAIN IMAGE -->
<img src="include/rs-plugin/demos/assets/images/dummy.png" alt="" data-lazyload="include/rs-plugin/demos/assets/images/transparent.png" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="off" class="rev-slidebg" data-no-retina>
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption tp-resizeme"
id="slide-84-layer-1"
data-x="['left','left','left','center']" data-hoffset="['20','19','20','0']"
data-y="['top','top','top','top']" data-voffset="['30','29','24','32']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_in="y:20px;opacity:0;s:1000;e:Power4.easeOut;"
data-transform_out="auto:auto;s:500;e:Power2.easeInOut;"
data-start="500"
data-responsive_offset="on"
style="z-index: 5;cursor:pointer;"><img src="include/rs-plugin/demos/assets/images/dummy.png" alt="" data-ww="['1200px','984px','738px','1200px']" data-hh="['695px','570px','427px','695px']" data-lazyload="include/rs-plugin/demos/assets/images/discover4_detail.jpg" data-no-retina> </div>
<!-- LAYER NR. 2 -->
<div class="tp-caption tp-resizeme tp-svg-layer"
id="slide-84-layer-6"
data-x="['left','left','left','left']" data-hoffset="['45','46','20','0']"
data-y="['top','top','top','top']" data-voffset="['330','150','93','82']"
data-width="60"
data-height="60"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:150;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 0.75);"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-20px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="650"
data-actions='[{"event":"click","action":"jumptoslide","slide":"rs-83","delay":""}]'
data-svg_src="include/rs-plugin/demos/assets/images/ic_chevron_left_36px.svg"
data-svg_idle="sc:transparent;sw:0;sda:0;sdo:0;"
data-svg_hover="sc:transparent;sw:0;sda:0;sdo:0;"
data-responsive_offset="on"
style="z-index: 6; min-width: 60px; max-width: 60px; max-width: 60px; max-width: 60px; color: rgba(255, 255, 255, 1.00);cursor:pointer;"> </div>
<!-- LAYER NR. 3 -->
<div class="tp-caption tp-resizeme tp-svg-layer"
id="slide-84-layer-7"
data-x="['left','left','left','left']" data-hoffset="['84','84','62','40']"
data-y="['top','top','top','top']" data-voffset="['330','149','92','82']"
data-width="60"
data-height="60"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:150;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 0.75);"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-20px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="700"
data-actions='[{"event":"click","action":"jumptoslide","slide":"rs-81","delay":""}]'
data-svg_src="include/rs-plugin/demos/assets/images/ic_chevron_right_24px.svg"
data-svg_idle="sc:transparent;sw:0;sda:0;sdo:0;"
data-svg_hover="sc:transparent;sw:0;sda:0;sdo:0;"
data-responsive_offset="on"
style="z-index: 7; min-width: 60px; max-width: 60px; max-width: 60px; max-width: 60px; color: rgba(255, 255, 255, 1.00);cursor:pointer;"> </div>
<!-- LAYER NR. 4 -->
<div class="tp-caption tp-resizeme"
id="slide-84-layer-3"
data-x="['left','left','left','left']" data-hoffset="['60','63','40','20']"
data-y="['top','top','top','top']" data-voffset="['400','218','154','150']"
data-fontsize="['50','50','40','30']"
data-lineheight="['50','50','40','30']"
data-width="['480','480','400','320']"
data-height="none"
data-whitespace="normal"
data-transform_idle="o:1;"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-20px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="750"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 8; min-width: 480px; max-width: 480px; white-space: normal; font-size: 50px; line-height: 50px; font-weight: 900; color: rgba(255, 255, 255, 1.00);font-family:Lato;">PROJECT NATURAL EXPLORATION </div>
<!-- LAYER NR. 5 -->
<div class="tp-caption tp-resizeme"
id="slide-84-layer-4"
data-x="['left','left','left','left']" data-hoffset="['60','62','41','20']"
data-y="['top','top','top','top']" data-voffset="['514','324','250','217']"
data-width="['480','480','400','320']"
data-height="none"
data-whitespace="normal"
data-transform_idle="o:1;"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-20px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="800"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 9; min-width: 480px; max-width: 480px; white-space: normal; font-size: 20px; line-height: 25px; font-weight: 700; color: rgba(255, 255, 255, 0.75);font-family:Lato;">Bring to the table win-win survival strategies to ensure proactive domination. </div>
<!-- LAYER NR. 6 -->
<a class="tp-caption rev-btn tp-resizeme"
href="#" target="_blank" id="slide-84-layer-5"
data-x="['left','left','left','left']" data-hoffset="['60','62','41','20']"
data-y="['top','top','top','top']" data-voffset="['599','392','318','307']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:150;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 1.00);bg:rgba(255, 255, 255, 0);bc:rgba(255, 255, 255, 1.00);"
data-transform_in="x:20px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="y:-10px;opacity:0;s:300;e:Power2.easeInOut;"
data-start="850"
data-splitin="none"
data-splitout="none"
data-actions=''
data-responsive_offset="on"
style="z-index: 10; white-space: nowrap; font-size: 16px; line-height: 42px; font-weight: 700; color: rgba(255, 255, 255, 1.00);font-family:Lato;background-color:rgba(0, 173, 208, 1.00);padding:0px 28px 0px 28px;border-color:rgba(0, 173, 208, 1.00);border-style:solid;border-width:2px;border-radius:3px 3px 3px 3px;outline:none;box-shadow:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;cursor:pointer;">Visit Project Website </a>
<!-- LAYER NR. 7 -->
<div class="tp-caption tp-resizeme tp-svg-layer"
id="slide-84-layer-2"
data-x="['right','right','right','right']" data-hoffset="['26','21','16','10']"
data-y="['top','top','top','top']" data-voffset="['38','30','19','32']"
data-width="60"
data-height="60"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:150;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 0.75);"
data-transform_in="y:10px;opacity:0;s:800;e:Power4.easeOut;"
data-transform_out="auto:auto;s:500;e:Power2.easeInOut;"
data-start="700"
data-actions='[{"event":"click","action":"jumptoslide","slide":"rs-80","delay":""}]'
data-svg_src="include/rs-plugin/demos/assets/images/ic_close_36px.svg"
data-svg_idle="sc:transparent;sw:0;sda:0;sdo:0;"
data-svg_hover="sc:transparent;sw:0;sda:0;sdo:0;"
data-responsive_offset="on"
style="z-index: 11; min-width: 60px; max-width: 60px; max-width: 60px; max-width: 60px; color: rgba(255, 255, 255, 1.00);cursor:pointer;"> </div>
</li>
</ul>
<div class="tp-bannertimer tp-bottom" style="visibility: hidden !important;"></div>
</div>
</div><!-- END REVOLUTION SLIDER -->
</div>
</section><!-- #content end -->
<!-- Footer
============================================= -->
<footer id="footer" class="dark">
<div class="container">
<!-- Footer Widgets
============================================= -->
<div class="footer-widgets-wrap clearfix">
<div class="col_two_third">
<div class="col_one_third">
<div class="widget clearfix">
<img src="images/footer-widget-logo.png" alt="" class="footer-logo">
<p>We believe in <strong>Simple</strong>, <strong>Creative</strong> & <strong>Flexible</strong> Design Standards.</p>
<div style="background: url('images/world-map.png') no-repeat center center; background-size: 100%;">
<address>
<strong>Headquarters:</strong><br>
795 Folsom Ave, Suite 600<br>
San Francisco, CA 94107<br>
</address>
<abbr title="Phone Number"><strong>Phone:</strong></abbr> (91) 8547 632521<br>
<abbr title="Fax"><strong>Fax:</strong></abbr> (91) 11 4752 1433<br>
<abbr title="Email Address"><strong>Email:</strong></abbr> info@canvas.com
</div>
</div>
</div>
<div class="col_one_third">
<div class="widget widget_links clearfix">
<h4>Blogroll</h4>
<ul>
<li><a href="http://codex.wordpress.org/">Documentation</a></li>
<li><a href="http://wordpress.org/support/forum/requests-and-feedback">Feedback</a></li>
<li><a href="http://wordpress.org/extend/plugins/">Plugins</a></li>
<li><a href="http://wordpress.org/support/">Support Forums</a></li>
<li><a href="http://wordpress.org/extend/themes/">Themes</a></li>
<li><a href="http://wordpress.org/news/">WordPress Blog</a></li>
<li><a href="http://planet.wordpress.org/">WordPress Planet</a></li>
</ul>
</div>
</div>
<div class="col_one_third col_last">
<div class="widget clearfix">
<h4>Recent Posts</h4>
<div id="post-list-footer">
<div class="spost clearfix">
<div class="entry-c">
<div class="entry-title">
<h4><a href="#">Lorem ipsum dolor sit amet, consectetur</a></h4>
</div>
<ul class="entry-meta">
<li>10th July 2014</li>
</ul>
</div>
</div>
<div class="spost clearfix">
<div class="entry-c">
<div class="entry-title">
<h4><a href="#">Elit Assumenda vel amet dolorum quasi</a></h4>
</div>
<ul class="entry-meta">
<li>10th July 2014</li>
</ul>
</div>
</div>
<div class="spost clearfix">
<div class="entry-c">
<div class="entry-title">
<h4><a href="#">Debitis nihil placeat, illum est nisi</a></h4>
</div>
<ul class="entry-meta">
<li>10th July 2014</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col_one_third col_last">
<div class="widget clearfix" style="margin-bottom: -20px;">
<div class="row">
<div class="col-md-6 bottommargin-sm">
<div class="counter counter-small"><span data-from="50" data-to="15065421" data-refresh-interval="80" data-speed="3000" data-comma="true"></span></div>
<h5 class="nobottommargin">Total Downloads</h5>
</div>
<div class="col-md-6 bottommargin-sm">
<div class="counter counter-small"><span data-from="100" data-to="18465" data-refresh-interval="50" data-speed="2000" data-comma="true"></span></div>
<h5 class="nobottommargin">Clients</h5>
</div>
</div>
</div>
<div class="widget subscribe-widget clearfix">
<h5><strong>Subscribe</strong> to Our Newsletter to get Important News, Amazing Offers & Inside Scoops:</h5>
<div class="widget-subscribe-form-result"></div>
<form id="widget-subscribe-form" action="include/subscribe.php" role="form" method="post" class="nobottommargin">
<div class="input-group divcenter">
<span class="input-group-addon"><i class="icon-email2"></i></span>
<input type="email" id="widget-subscribe-form-email" name="widget-subscribe-form-email" class="form-control required email" placeholder="Enter your Email">
<span class="input-group-btn">
<button class="btn btn-success" type="submit">Subscribe</button>
</span>
</div>
</form>
</div>
<div class="widget clearfix" style="margin-bottom: -20px;">
<div class="row">
<div class="col-md-6 clearfix bottommargin-sm">
<a href="#" class="social-icon si-dark si-colored si-facebook nobottommargin" style="margin-right: 10px;">
<i class="icon-facebook"></i>
<i class="icon-facebook"></i>
</a>
<a href="#"><small style="display: block; margin-top: 3px;"><strong>Like us</strong><br>on Facebook</small></a>
</div>
<div class="col-md-6 clearfix">
<a href="#" class="social-icon si-dark si-colored si-rss nobottommargin" style="margin-right: 10px;">
<i class="icon-rss"></i>
<i class="icon-rss"></i>
</a>
<a href="#"><small style="display: block; margin-top: 3px;"><strong>Subscribe</strong><br>to RSS Feeds</small></a>
</div>
</div>
</div>
</div>
</div><!-- .footer-widgets-wrap end -->
</div>
<!-- Copyrights
============================================= -->
<div id="copyrights">
<div class="container clearfix">
<div class="col_half">
Copyrights © 2014 All Rights Reserved by Canvas Inc.<br>
<div class="copyright-links"><a href="#">Terms of Use</a> / <a href="#">Privacy Policy</a></div>
</div>
<div class="col_half col_last tright">
<div class="fright clearfix">
<a href="#" class="social-icon si-small si-borderless si-facebook">
<i class="icon-facebook"></i>
<i class="icon-facebook"></i>
</a>
<a href="#" class="social-icon si-small si-borderless si-twitter">
<i class="icon-twitter"></i>
<i class="icon-twitter"></i>
</a>
<a href="#" class="social-icon si-small si-borderless si-gplus">
<i class="icon-gplus"></i>
<i class="icon-gplus"></i>
</a>
<a href="#" class="social-icon si-small si-borderless si-pinterest">
<i class="icon-pinterest"></i>
<i class="icon-pinterest"></i>
</a>
<a href="#" class="social-icon si-small si-borderless si-vimeo">
<i class="icon-vimeo"></i>
<i class="icon-vimeo"></i>
</a>
<a href="#" class="social-icon si-small si-borderless si-github">
<i class="icon-github"></i>
<i class="icon-github"></i>
</a>
<a href="#" class="social-icon si-small si-borderless si-yahoo">
<i class="icon-yahoo"></i>
<i class="icon-yahoo"></i>
</a>
<a href="#" class="social-icon si-small si-borderless si-linkedin">
<i class="icon-linkedin"></i>
<i class="icon-linkedin"></i>
</a>
</div>
<div class="clear"></div>
<i class="icon-envelope2"></i> info@canvas.com <span class="middot">·</span> <i class="icon-headphones"></i> +91-11-6541-6369 <span class="middot">·</span> <i class="icon-skype2"></i> CanvasOnSkype
</div>
</div>
</div><!-- #copyrights end -->
</footer><!-- #footer end -->
</div><!-- #wrapper end -->
<!-- Go To Top
============================================= -->
<div id="gotoTop" class="icon-angle-up"></div>
<!-- External JavaScripts
============================================= -->
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/plugins.js"></script>
<!-- Footer Scripts
============================================= -->
<script type="text/javascript" src="js/functions.js"></script>
<!-- SLIDER REVOLUTION 5.x SCRIPTS -->
<script type="text/javascript" src="include/rs-plugin/js/jquery.themepunch.tools.min.js"></script>
<script type="text/javascript" src="include/rs-plugin/js/jquery.themepunch.revolution.min.js"></script>
<script type="text/javascript" src="include/rs-plugin/js/extensions/revolution.extension.video.min.js"></script>
<script type="text/javascript" src="include/rs-plugin/js/extensions/revolution.extension.slideanims.min.js"></script>
<script type="text/javascript" src="include/rs-plugin/js/extensions/revolution.extension.actions.min.js"></script>
<script type="text/javascript" src="include/rs-plugin/js/extensions/revolution.extension.layeranimation.min.js"></script>
<!-- <script type="text/javascript" src="include/rs-plugin/js/extensions/revolution.extension.navigation.min.js"></script> -->
<script type="text/javascript" src="include/rs-plugin/js/extensions/revolution.extension.parallax.min.js"></script>
<script type="text/javascript">
var tpj=jQuery;
var revapi19;
tpj(document).ready(function() {
if(tpj("#discover").revolution == undefined){
revslider_showDoubleJqueryError("#discover");
}else{
revapi19 = tpj("#discover").show().revolution({
sliderType:"standard",
jsFileLocation:"include/rs-plugin/js/",
sliderLayout:"fullwidth",
dottedOverlay:"none",
delay:9000,
navigation: {
onHoverStop:"off",
},
viewPort: {
enable:true,
outof:"wait",
visible_area:"80%"
},
responsiveLevels:[1170,1024,778,480],
visibilityLevels:[1170,1024,778,480],
gridwidth:[1240,1024,778,480],
gridheight:[840,700,550,1720],
lazyType:"single",
parallax: {
type:"scroll",
origo:"slidercenter",
speed:400,
levels:[5,20,30,40,50,-4,-6,-8,45,46,47,48,49,50,51,55],
type:"scroll",
disable_onmobile:"on"
},
shadow:0,
spinner:"off",
stopLoop:"on",
stopAfterLoops:0,
stopAtSlide:1,
shuffle:"off",
autoHeight:"off",
disableProgressBar:"on",
hideThumbsOnMobile:"off",
hideSliderAtLimit:0,
hideCaptionAtLimit:0,
hideAllCaptionAtLilmit:0,
debugMode:false,
fallbacks: {
simplifyAll:"off",
nextSlideOnWindowFocus:"off",
disableFocusListener:false,
}
});
var is_safari = (navigator.userAgent.indexOf('Safari') != -1 && navigator.userAgent.indexOf('Chrome') == -1);
revapi19.bind("revolution.slide.onloaded",function (e) {
var npe = document.getElementsByClassName("nopointerevent");
for (var i=0;i<npe.length;i++) {
npe[i].parentNode.parentNode.parentNode.style.pointerEvents = "none";
npe[i].parentNode.parentNode.parentNode.style.zIndex = 100;
}
jQuery('.ddd_mousebox').on('mousemove',function(e) {
var sto = revapi19.offset(),
dim = this.getBoundingClientRect(),
tpos = jQuery(this.parentNode.parentNode.parentNode).position(),
pos = {top:e.pageY-sto.top-tpos.top,left:e.pageX-tpos.left},
perc = {wp:(pos.left/dim.width)-0.5, hp:(pos.top/dim.height)-0.5};
getOverlaps(this);
punchgs.TweenLite.to(this.overlapps,0.4,{force3D:"true",overwrite:"auto",transformOrigin:"50% 50% 100%", z:"300px",rotationY:0-((perc.wp)*5),rotationX:((perc.hp)*5),zIndex:30});
punchgs.TweenLite.set(this.parentNode.parentNode.parentNode,{zIndex:10});
if (is_safari)
punchgs.TweenLite.to(this,0.4,{force3D:"true",overwrite:"auto",z:"10px",transformOrigin:"50% 50%", rotationY:0-((perc.wp)*10),rotationX:((perc.hp)*10)});
else
punchgs.TweenLite.to(this,0.4,{force3D:"true",overwrite:"auto",z:"10px",transformOrigin:"50% 50%", rotationY:0-((perc.wp)*10),rotationX:((perc.hp)*10),boxShadow:"0 50px 100px rgba(15,20,40,0.35),0 20px 45px rgba(15,20,40,0.35)"});
});
jQuery('.ddd_mousebox').on('mouseleave',function(e) {
punchgs.TweenLite.set(this.parentNode.parentNode.parentNode,{zIndex:5});
punchgs.TweenLite.to(this,0.5,{force3D:"true",overwrite:"auto",z:"0px",transformOrigin:"50% 50%", rotationY:0,rotationX:0,boxShadow:"0,0,0,0 rgba(0,0,0,0)"});
punchgs.TweenLite.to(this.overlapps,0.5,{force3D:"true",z:"0px",overwrite:"auto",transformOrigin:"50% 50% 100%", rotationY:0,rotationX:0});
});
});
function getOverlaps(el) {
if (el.overlapps == undefined) {
el.overlapps = [];
var jel = jQuery(el),
jpel = jQuery(el.parentNode.parentNode.parentNode),
pos_e = jpel.position();
pos_e.bottom = jel.height()+pos_e.top;
pos_e.right = jel.width()+pos_e.left;
revapi19.find('.tp-caption').each(function() {
var cel = jQuery(this.parentNode.parentNode.parentNode),
pos_cel = cel.position();
if (this!==el && pos_cel.top>=pos_e.top && pos_cel.top<=pos_e.bottom && pos_cel.left>=pos_e.left && pos_cel.left<=pos_e.right) el.overlapps.push(cel);
});
}
}
}
}); /*ready*/
</script>
</body>
</html> |
epa-grants/research/raw/05868.html | 1wheel/scraping | <!DOCTYPE html>
<!--[if IEMobile 7]><html class="iem7 no-js" lang="en" dir="ltr"><![endif]-->
<!--[if lt IE 7]><html class="lt-ie9 lt-ie8 lt-ie7 no-js" lang="en" dir="ltr"><![endif]-->
<!--[if (IE 7)&(!IEMobile)]><html class="lt-ie9 lt-ie8 no-js" lang="en" dir="ltr"><![endif]-->
<!--[if IE 8]><html class="lt-ie9 no-js" lang="en" dir="ltr"><![endif]-->
<!--[if (gt IE 8)|(gt IEMobile 7)]><!-->
<html class="no-js not-oldie" lang="en" dir="ltr">
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="HandheldFriendly" content="true" />
<link rel="shortcut icon" href="https://www.epa.gov/sites/all/themes/epa/favicon.ico" type="image/vnd.microsoft.icon" />
<meta name="MobileOptimized" content="width" />
<meta http-equiv="cleartype" content="on" />
<meta http-equiv="ImageToolbar" content="false" />
<meta name="viewport" content="width=device-width" />
<meta name="version" content="20161218" />
<!--googleon: all-->
<meta name="DC.description" content="" />
<meta name="DC.title" content="" />
<title>
Fluoracrylate Polymer Supported Ligands as Catalysts for Environmentally Benign Synthesis in Supercritical Fluids|
Research Project Database | Grantee Research Project | ORD | US EPA</title>
<!--googleoff: snippet-->
<meta name="keywords" content="" />
<link rel="shortlink" href="" />
<link rel="canonical" href="" />
<meta name="DC.creator" content="" />
<meta name="DC.language" content="en" />
<meta name="DC.Subject.epachannel" content="" />
<meta name="DC.type" content="" />
<meta name="DC.date.created" content="" />
<meta name="DC.date.modified" content="2003-03-17" />
<!--googleoff: all-->
<link type="text/css" rel="stylesheet" href="https://www.epa.gov/misc/ui/jquery.ui.autocomplete.css" media="all" />
<link type="text/css" rel="stylesheet" href="https://www.epa.gov/sites/all/themes/epa/css/lib/jquery.ui.theme.css" media="all" />
<link type="text/css" rel="stylesheet" href="https://www.epa.gov/sites/all/libraries/template2/s.css" media="all" />
<!--[if lt IE 9]><link type="text/css" rel="stylesheet" href="https://www.epa.gov/sites/all/themes/epa/css/ie.css" media="all" /><![endif]-->
<link rel="alternate" type="application/atom+xml" title="EPA.gov All Press Releases" href="https://www.epa.gov/newsreleases/search/rss" />
<link rel="alternate" type="application/atom+xml" title="EPA.gov Headquarters Press Releases" href="https://www.epa.gov/newsreleases/search/rss/field_press_office/headquarters" />
<link rel="alternate" type="application/atom+xml" title="Greenversations, EPA's Blog" href="https://blog.epa.gov/blog/feed/" />
<!--[if lt IE 9]><script src="https://www.epa.gov/sites/all/themes/epa/js/html5.js"></script><![endif]-->
<style type="text/css">
/*This style needed for highlight link. Please do not remove*/
.hlText {
font-family: "Arial";
color: red;
font-weight: bold;
font-style: italic;
background-color: yellow;
}
.tblClass {
font-size:smaller; min-width: 10%; line-height: normal;
}
</style>
</head>
<!-- NOTE, figure out body classes! -->
<body class="node-type-(web-area|page|document|webform) (microsite|resource-directory)" >
<!-- Google Tag Manager -->
<noscript>
<iframe src="//www.googletagmanager.com/ns.html?id=GTM-L8ZB" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-L8ZB');</script>
<!-- End Google Tag Manager -->
<div class="skip-links"><a href="#main-content" class="skip-link element-invisible element-focusable">Jump to main content</a></div>
<header class="masthead clearfix" role="banner"> <img class="site-logo" src="https://www.epa.gov/sites/all/themes/epa/logo.png" alt="" />
<hgroup class="site-name-and-slogan">
<h1 class="site-name"><a href="https://www.epa.gov/" title="Go to the home page" rel="home"><span>US EPA</span></a></h1>
<div class="site-slogan">United States Environmental Protection Agency</div>
</hgroup>
<form class="epa-search" method="get" action="https://search.epa.gov/epasearch/epasearch">
<label class="element-hidden" for="search-box">Search</label>
<input class="form-text" placeholder="Search EPA.gov" name="querytext" id="search-box" value=""/>
<button class="epa-search-button" id="search-button" type="submit" title="Search">Search</button>
<input type="hidden" name="fld" value="" />
<input type="hidden" name="areaname" value="" />
<input type="hidden" name="areacontacts" value="" />
<input type="hidden" name="areasearchurl" value="" />
<input type="hidden" name="typeofsearch" value="epa" />
<input type="hidden" name="result_template" value="2col.ftl" />
<input type="hidden" name="filter" value="sample4filt.hts" />
</form>
</header>
<section id="main-content" class="main-content clearfix" role="main">
<div class="region-preface clearfix">
<div id="block-pane-epa-web-area-connect" class="block block-pane contextual-links-region">
<ul class="menu utility-menu">
<li class="menu-item"><a href="https://www.epa.gov/research-grants/forms/contact-us-about-research-grants" class="menu-link contact-us">Contact Us</a></li>
</ul>
</div>
</div>
<div class="main-column clearfix">
<!--googleon: all-->
<div class="panel-pane pane-node-content" >
<div class="pane-content">
<div class="node node-page clearfix view-mode-full">
<div class="box multi related-info right clear-right" style="max-width:300px; font-size:14px;"><!--googleoff: index-->
<h5 class="pane-title">Project Research Results</h5>
<div class="pane-content">
<ul>
<li><a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5868/report/F">Final Report</a></li>
<li><a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5868/report/2001">2001 Progress Report</a></li>
</ul>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.publications/abstract/5868">3 publications for this subproject</a><br />
<strong>Main Center: <a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5343/report/0">R828598</a><br />
</strong>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.publications/Center/59">359 publications for this center</a><br />
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.journals/Center/59">90 journal articles for this center</a><br />
</div>
<!-- RFA Search start -->
<h5 class="pane-title">Related Information</h5>
<div class="pane-content">
<ul><li><a href="https://www.epa.gov/research-grants/">Research Grants</a></li>
<li><a href="https://www.epa.gov/P3">P3: Student Design Competition</a></li>
<li><a href="https://www.epa.gov/research-fellowships/">Research Fellowships</a></li>
<li><a href="https://www.epa.gov/sbir/">Small Business Innovation Research (SBIR)</a></li>
<li><a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/search.welcome">Grantee Research Project Results Search</a></li>
</ul>
</div>
<!-- RFA Search End --><!--googleon: index-->
</div>
<a name="content"></a>
<h2>
Fluoracrylate Polymer Supported Ligands as Catalysts for Environmentally Benign Synthesis in Supercritical Fluids</h2>
<b>EPA Grant Number:</b> R828598C771<br />
<b>Subproject:</b> <i>this is subproject number 771 , established and managed by the Center Director under
grant <a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5343/report/0">R828598</a>
<br>
(EPA does not fund or establish subprojects; EPA awards and manages the overall grant for this center).</i><br />
<b>Center:</b>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5343/report/0">Gulf Coast HSRC (Lamar)</a><br />
<b>Center Director:</b>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.investigatorInfo/investigator/5702"> Ho, Tho C.</a><br />
<b>Title:</b> Fluoracrylate Polymer Supported Ligands as Catalysts for Environmentally Benign Synthesis in Supercritical Fluids<br />
<b>Investigators:</b>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.investigatorInfo/investigator/2345"> Akgerman, Aydin </a>
<br />
<strong>Institution:</strong>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.institutionInfo/institution/2136">
<b>Texas A & M University</b>
</a> <br />
<strong>EPA Project Officer:</strong>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.investigatorInfo/investigator/4005"> Lasat, Mitch </a>
<br />
<b>Project Period:</b>
September 1, 2000 through
August 31, 2004
<br />
<b>RFA:</b>
Gulf Coast Hazardous Substance Research Center (Lamar University) (1996)
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.rfatext/rfa_id/270">RFA Text</a> |
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/recipients.display/rfa_id/270">Recipients Lists</a>
<br />
<b>Research Category:</b>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.researchCategory/rc_id/846">Hazardous Waste/Remediation</a>
,
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.researchCategory/rc_id/965">Targeted Research</a>
<br />
<br>
<h3>Objective:</h3>
<p>Many organic syntheses reactions involve the use of homogeneous catalysts,
which are soluble metal salts or organometallic complexes that are dissolved
in a suitable solvent used as the reaction medium. The solvents used in homogeneous
catalysis are usually toxic organic solvents that can dissolve the metal complexes,
which are coming under close scrutiny because of environmental regulatory restrictions.
There is a great push in industry today to replace these organic solvents with
environmentally benign solvents, such as supercritical carbon dioxide, scCO<font size="-2">2</font>.
But, most homogeneous catalysts are not soluble in supercritical carbon dioxide
and some organic syntheses are solvent selective. Another major problem in homogeneous
catalysis is the separation and recovery of the catalyst after the completion
of the reaction. A major thrust in the industry is to develop homogeneous catalysts,
which can be recovered easily and intact after the completion of the reaction.
In this vain, there is a significant amount of interest in polymer supported
ligands for metal complexation in homogeneous catalysis. </p>
<p>In this project we are proposing to evaluate a novel idea that solves both
the solvent replacement and intact recovery of catalyst issues. We propose to
attach the homogeneous catalyst to a fluoroacrylate copolymer and carry the
reaction in scCO<font size="-2">2</font>. This specific polymer is very soluble
in scCO<font size="-2">2</font>. Furthermore, it can very easily be separated
by a membrane. In the overall process, the reaction will take place in a membrane
reactor and membrane separation of the effluent will always maintain the catalyst
in the reactor. The products can be separated from the solvent, scCO<font size="-2">2</font>,
by simple expansion yielding <i>solvent free</i> products. Carbon dioxide can
be re-compressed and recycled. Upon completion of the reaction and expansion
of the solvent remaining in the reactor, the catalyst will also be obtained
intact.
<p></p>
<h3>Approach:</h3>
<P>Our approach will be in five phases. (1) We will first synthesize
functionalized copolymers using commercially available fluoroacrylates and an
active ester comonomer, specifically N-acryloxysuccinimide (NASI), the former
enabling solubility in carbon dioxide the latter providing an exchange site
for an active catalyst. (2) The NASI group on the copolymer would easily react
with amine containing complexing agents. We will then exchange the NASI branches
for metal ion containing catalytic materials for hydrogenation and hydroformylation
reactions. (3) We will determine solubilities of these catalytic materials in
scCO<font size="-2">2</font> at a range of temperatures and pressures. (4) We will evaluate the catalytic
activity of these new novel catalysts in hydrogenation and hydroformylation
reactions carried in scCO<font size="-2">2</font>; and (5) We will evaluate membrane reactors for catalyst
separation and recovery.
<p></p>
<h3>Expected Results:</h3>
<P>We have already synthesized the polymer with the NASI
group replaced by a catalyst precursor and a diazo dye which gives the polymer
a red color. We have shown that these products are soluble in scCO<font size="-2">2</font> and dye
substituted polymer gives a orange/yellow colored solution. In order to evaluate
whether the dye is active, we dissolved the polymer in scCO<font size="-2">2</font> in the presence
of an organic base, diethylamine. The azo dye, in a basic solution, would have
a yellow color, and we observed that the color does indeed change to yellow
from orange/yellow. Hence we have qualitatively shown that the polymer/catalyst
is soluble in carbon dioxide and that the functionalized sites are exposed in
solution and are available for reaction.
<p></p>
<h3>Publications and Presentations:</h3>
Publications have been submitted on this subproject: <a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.publications/abstract/5868">View all 3 publications for this subproject</a>
| <a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.publications/Center/59">View all 359 publications for this center</a>
</p>
<h3>Supplemental Keywords:</h3>
RFA, Scientific Discipline, INTERNATIONAL COOPERATION, Waste, TREATMENT/CONTROL, Sustainable Industry/Business, Chemical Engineering, cleaner production/pollution prevention, Environmental Chemistry, Technology, Analytical Chemistry, Hazardous Waste, New/Innovative technologies, Chemicals Management, Hazardous, advanced treatment technologies, clean technologies, organic synthesis, product substitution, environmentally benign solvents, alternative materials, catalysts, supercritical carbon dioxide, membrane processes, organic solvents , organic chemical synthesis reactions, hazardous organic compounds, environmentally benign alternative, organic solvents, solvent substituion, environmentally-friendly chemical synthesis, green chemistry, product design, supercritical fluids <p />
<P><h3>Progress and Final Reports:</h3>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5868/report/2001">2001 Progress Report</a><br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5868/report/F">Final Report</a><br>
</P>
<br>
<h3>Main Center Abstract and Reports:</h3>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5343/report/0">R828598</a>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5343/report/0">Gulf Coast HSRC (Lamar)</a>
<br />
<p> <strong>Subprojects under this Center:</strong> <span class="fileinfo">(EPA does not fund or establish subprojects; EPA awards and manages the overall grant for this center).</span><br />
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5932/report/0">R822721C529</a> Environmentally Acceptable Endpoints: Risk Based Remediation Using Bioremediation<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5924/report/0">R822721C552</a> Degradative Solidification/Stabilization Technology for Chlorinated Hydrocarbons<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5928/report/0">R822721C569</a> Treatment and Product Recovery: Supercritical Water Oxidation of Nylon Monomer Manufacturing Waste<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5941/report/0">R822721C620</a> Colloidal Fouling of Membranes: Implications in the Treatment of Textile Dye Wastes and Water Reuse<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5920/report/0">R822721C626</a> Catalytic Hydroprocessing of Chlorinated Organics<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5921/report/0">R822721C627</a> The Interaction of Microbial Activity and Zero Valent Iron Permeable Barrier Technology<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5939/report/0">R822721C630</a> Microbial Cometabolism of Recalcitrant Chemicals in Contaminated Air Streams<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5936/report/0">R822721C633</a> Catalyst Lifetime Studies for Chlorocarbon Steam Reforming<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5938/report/0">R822721C635</a> Electrokinetic/Surfactant-Enhanced Remediation of Hydrophobic Pollutants in Low Permeability Subsurface Environments<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5937/report/0">R822721C636</a> Transformation Reactions of Nitroaromatic and Nitrogen Heterocyclic Compounds on Granular Activated Carbon (GAC) Surfaces: Enhancement of GAC Adsorption in Natural and Engineered Environmental Systems<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5918/report/0">R822721C640</a> Environmentally Friendly Organic Synthesis in Supercritical Fluids<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5926/report/0">R822721C645</a> Development and Evaluation of an Integrated Model to Facilitate Risk-Based Corrective Action at Superfund Sites<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5930/report/0">R822721C651</a> Adjustable Biopolymer Chelators for Cadmium, Lead and Mercury<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5925/report/0">R822721C653</a> New Electrochemically Smart Catalysts for Hazardous Waste Management and Development of Capillary Electrophoresis for Analysis of their Products<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5922/report/0">R822721C655</a> Soil Sampling in South Alabama Oil Fields<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5934/report/0">R822721C659</a> Subsurface Contamination Site Characterization via a Computer-Aided Visual Tool<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5940/report/0">R822721C661</a> New Insoluble supports for Protein Immobilization for Use in Metalloprotein Affinity Metal Chromatography<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5923/report/0">R822721C663</a> Soil Remediation with Ultra-High-Efficiency Hydrocyclones<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5919/report/0">R822721C669</a> Solid Acid Catalyzed Alkylation in Supercritical Fluids<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5935/report/0">R822721C679</a> Regeneration/Reactivation of Carbon Adsorbents by Radio Frequency (RF) Induction Heating<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5942/report/0">R822721C687</a> Improved Halogen Resistance of Catalytic Oxidation<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5927/report/0">R822721C696</a> Phytoremediation and Bioremediation of Land Contaminated By PAHs, PCBs, and TNT<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5929/report/0">R822721C697</a> Fundamental and Kinetic Investigation of Sorbent Technology for Optimum Mercury Emission Control<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5933/report/0">R822721C700</a> Effects of Natural and Cyclic Variations on Contaminant Fate and Transport<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5931/report/0">R822721C703</a> Enhancement of DNAPL Dissolution Rates by Dechlorinating Anaerobes<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5917/report/0">R826694C620</a> Colloidal Fouling of Membranes: Implications in the Treatment of Textile Dye Wastes and Water Reuse<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5916/report/0">R826694C625</a> Enhanced Treatment of DNAPLs Contaminated Soils and Groundwater Using Biosurfactants: In-Situ Bioremediation<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5894/report/0">R826694C626</a> Catalytic Hydroprocessing of Chlorinated Wastes<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5907/report/0">R826694C627</a> The Interaction of Microbial Activity and Zero Valent Iron Permeable Barrier Technology<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5904/report/0">R826694C629</a> Biofiltration of BTEX in Petroleum-Contaminated Soil Remediation Off-Gas<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5912/report/0">R826694C630</a> Microbial Cometabolism of Recalcitrant Chemicals in Contaminated Air Streams<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5908/report/0">R826694C633</a> Catalyst Lifetime Studies for Chlorocarbon Steam Reforming<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5910/report/0">R826694C635</a> Electrokinetic/Surfactant-Enhanced Remediation of Hydrophobic Pollutants in Low Permeability Subsurface Environments<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5911/report/0">R826694C636</a> Transformation Reactions of Nitroaromatic and Nitrogen Heterocyclic Compounds on Granular Activated Carbon (GAC) Surfaces: Enhancement of GAC Adsorption in Natural and Engineered Environmental Systems<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5892/report/0">R826694C640</a> Environmentally Friendly Organic Synthesis in Supercritical Fluids<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5895/report/0">R826694C645</a> Development and Evaluation of an Integrated Model to Facilitate Risk-Based Corrective Action at Superfund Sites<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5900/report/0">R826694C651</a> Adjustable Biopolymer Chelators for Cadmium, Lead, and Mercury Remeidation<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5913/report/0">R826694C659</a> Subsurface Contamination Site characterization Via a Computer-Aided Visual Tool<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5915/report/0">R826694C661</a> New Insoluble supports for Protein Immobilization for Use in Metalloprotein Affinity Metal Chromatography<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5893/report/0">R826694C669</a> Solid Acid Catalyzed Alkylation in Supercritical Reaction Media<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5906/report/0">R826694C679</a> Regeneration and Reactivation of Carbon Adsorbents by Radio Frequency Induction Heating<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5897/report/0">R826694C696</a> Phytoremediation and Bioremediation of Land Contaminated By PAHs, PCBs, and TNT<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5899/report/0">R826694C697</a> Fundamental and Kinetic Investigation of Sorbent Technology for Optimum Mercury Emission Control<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5914/report/0">R826694C700</a> Effects of Natural Cyclic Variations on Contaminated Fate and Transport<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5903/report/0">R826694C703</a> Enhancement of DNAPL Dissolution Rates by Dechlorinating Anaerobes<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5901/report/0">R826694C705</a> A Pilot Plant for Producing Mixed Ketones from Waste Biomass<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5896/report/0">R826694C722</a> The Effects of an Oily-Phase on VOC Emissions from Industrial Wastewater<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5909/report/0">R826694C724</a> Mercury Removal from Stack Gas by Aqueous Scrubbing<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5905/report/0">R826694C725</a> Transport, Fate and Risk Implications of Environmentally Acceptable Endpoint Decisions<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5898/report/0">R826694C731</a> Development and Application of a Real-Time Optical Sensor for Atmospheric Formaldehyde<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5902/report/0">R826694C734</a> An Advanced System for Pollution Prevention in Chemical Complexes<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1138/report/0">R828598C001</a> Field Study Abstract: A Model of Ambient Air Pollution in Southeast Texas Using Artificial Neural Network Technology<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1168/report/0">R828598C002</a> Hollow Fiber Membrane Bioreactors for Treating Water and Air Streams Contaminated with Chlorinated Solvents<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1165/report/0">R828598C003</a> Fugitive Emissions of Hazardous Air Pollutants from On-Site Industrial Sewers<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1862/report/0">R828598C004</a> Biofiltration Technology Development<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1167/report/0">R828598C005</a> A Risk-Based Decision Analysis Approach for Aquifers Contaminated with DNAPLs<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1164/report/0">R828598C006</a> In-Situ Remediation for Contaminated Soils Using Prefabricated Vertical Drains<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1155/report/0">R828598C007</a> Membrane Technology Selection System for the Metal Finishing Industry<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1151/report/0">R828598C008</a> Sequential Environments for Enhanced Bioremediation of Chlorinated Aliphatic Hydrocarbons<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1163/report/0">R828598C009</a> Waste Minimization in the Magnetic Tape Industry: Waterborne Coating Formulations for Magnetic Tape Manufacture<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1162/report/0">R828598C010</a> Soil Remediation by Agglomeration with Petroleum Coke<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1161/report/0">R828598C011</a> Recovery of Dilute Phosphoric Acid in Waste Streams Using Waste Gas Ammonia: The Regenerative MAP/DAP Process<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1144/report/0">R828598C012</a> Stochastic Risk Assessment for Bioremediation<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1147/report/0">R828598C013</a> Selective Removal of Heavy Metals from Wastewater by Chelation in Supercritical Fluids<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1146/report/0">R828598C014</a> Optimization of Treatment Technologies for Detoxification of PCB Contaminated Soils<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1143/report/0">R828598C015</a> Wastewater Remediation by Catalytic Wet Oxidation<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1150/report/0">R828598C016</a> Permanence of Metals Containment in Solidified and Stabilized Wastes<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1149/report/0">R828598C017</a> Combustion Enhancement by Radial Jet Reattachment - Low Generation of Hazardous Gases and High Thermal Efficiency<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1148/report/0">R828598C018</a> A Process To Convert Industrial Biosludge and Paper Fines to Mixed Alcohol Fuels<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1142/report/0">R828598C019</a> Homogeneous Catalysis in Supercritical Carbon Dioxide<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1141/report/0">R828598C020</a> Ultrasonic Enhancement of the Removal of Heavy Metals<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1133/report/0">R828598C021</a> The Binding Chemistry and Leaching Mechanisms of Advanced Solidification/Stabilization Systems for Hazardous Waste Management<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1137/report/0">R828598C022</a> Development of an Air-Stripping and UV/H2O2 Oxidation Integrated Process To Treat a Chloro-Hydrocarbon-Contaminated Ground Water<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1139/report/0">R828598C023</a> A Comparative Study of Siting Opposition in Two Counties<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1131/report/0">R828598C024</a> Sonochemical Treatment of Hazardous Organic Compounds II: Process Optimization and Pathway Studies<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1130/report/0">R828598C025</a> Laser Diagnostics of the Combustion Process within a Rotary Kiln Incinerator<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1145/report/0">R828598C026</a> Use of Inorganic Ion Exchangers for Hazardous Waste Remediation<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1166/report/0">R828598C027</a> Kaolinite Sorbent for the Removal of Heavy Metals from Incinerated Lubricating Oils<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1159/report/0">R828598C028</a> Destruction of Chlorinated Hydrocarbons in Process Streams Using Catalytic Steam Reforming<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1160/report/0">R828598C029</a> Integrated Process Treatment Train (Bioremediation {Aerobic/Anaerobic} and Immobilization) for Texas Soils Contaminated with Combined Hazardous Wastes<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1158/report/0">R828598C030</a> Photo-Oxidation by H2O2/VisUV of Off-Gas Atmospheric Emissions from Industrial and Environmental Remediation Sources<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1154/report/0">R828598C031</a> Concentrated Halide Extraction and Recovery of Lead from Soil<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1157/report/0">R828598C032</a> Biodegradable Surfactant for Underground Chlorinated Solvent Remediation<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1153/report/0">R828598C033</a> A Software Guidance System for Choosing Analytical Subsurface Fate and Transport Models Including a Library of Computer Solutions for the Analytical Models<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1152/report/0">R828598C034</a> Hydrodynamic Modeling of Leachate Recirculating Landfill<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1136/report/0">R828598C035</a> Measurement of Oxygen Transfer Rate in Soil Matrices<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1134/report/0">R828598C036</a> Sorbent Technology for Multipollutant Control During Fluidized Bed Incineration<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1132/report/0">R828598C037</a> Pollution Prevention by Process Modification Using On-Line Optimization<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1135/report/0">R828598C038</a> Pollution Prevention by Process Modification<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1140/report/0">R828598C039</a> Water Solubility and Henry's Law Constant<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1129/report/0">R828598C040</a> Transferring Technical Information on Hazardous Substance Research by Publishing on the World Wide Web<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1156/report/0">R828598C041</a> Stress Protein Responses to Multiple Metal Exposure in Grass Shrimp<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/1866/report/0">R828598C042</a> Life-Cycle Environmental Costing for Managing Pollution Prevention in the Chemical and Petroleum Refining Industries: A Cross-Border Approach<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/7878/report/0">R828598C687</a> Improved Halogen Resistance of Catalytic Oxidation Through Efficient Catalyst Testing<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/7879/report/0">R828598C696</a> Phytoremediation and Bioremediation of Land Contaminated By PAHs, PCBs, and TNT<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/7880/report/0">R828598C697</a> Fundamental and Kinetic Investigation of Sorbent Technology for Optimum Mercury Emission Control<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/7881/report/0">R828598C700</a> Effects of Natural Cyclic Variations on Contaminated Fate and Transport<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/7882/report/0">R828598C703</a> Enhancement of DNAPL Dissolution Rates by Dechlorinating Anaerobes<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/9601/report/0">R828598C705</a> A Pilot Plant for Producing Mixed Ketones from Waste Biomass<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5874/report/0">R828598C722</a> The Effects of an Oily-Phase on VOC Emissions from Industrial Wastewater<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5885/report/0">R828598C724</a> Mercury Removal from Stack Gas by Aqueous Scrubbing<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5884/report/0">R828598C725</a> Transport, Fate and Risk Implications of Environmentally Acceptable Endpoint Decisions<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/9602/report/0">R828598C731</a> Development and Application of a Real Time Optical Sensor for Atmospheric Formaldehyde<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5890/report/0">R828598C734</a> An Advanced System for Pollution Prevention in Chemical Complexes<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5871/report/0">R828598C743</a> Field Demonstration of Ultrasound Enhancement of Permeable Treatment Walls<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5879/report/0">R828598C744</a> Optical Fibers Coated With Titania Membrane/UV-Generating Crystal in a Distributed-Light Photoreactor for VOC Oxidation<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5876/report/0">R828598C749</a> Characterization and Modeling of Indoor Particulate Contaminants In a Heavily Industrialized Community<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5888/report/0">R828598C753</a> Adsolubilization and Photocatalysis in a Semiconducting Monolithic Reactor for Wastewater Treatment<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5875/report/0">R828598C754</a> Remote Detection of Gas Emissions in Industrial Processes<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5886/report/0">R828598C759</a> Searching for Optimum Composition of Phosphogypsum: Fly ash: Cement Composites for Oyster Culch Materials<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/9603/report/0">R828598C761</a> Development of a Phytologically-Based Biosorptive Water Treatment Process<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5869/report/0">R828598C766</a> Chlorinated Solvent Impact and Remediation Strategies for the Dry Cleaning Industry<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5867/report/0">R828598C769</a> Soil/Sediment Remediation by Hot Water Extraction Combined with In-Situ Wet Oxidation<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5868/report/0">R828598C771</a> Fluoracrylate Polymer Supported Ligands as Catalysts for Environmentally Benign Synthesis in Supercritical Fluids<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5873/report/0">R828598C774</a> The Feasibility of Electrophoretic Repair of Impoundment Leaks<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5891/report/0">R828598C777</a> Surfactant Enhanced Photo-oxidation of Wastewaters<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5887/report/0">R828598C778</a> Stationary Power Generation Via Solid Oxide Fuel Cells: A Response to Pollution and Global Warming<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5880/report/0">R828598C786</a> Photocatalytic Recovery of Sulfur and Hydrogen From Hydrogen Sulfide<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5889/report/0">R828598C787</a> Biosurfactant Produced from Used Vegetable Oil for removal of Metals From Wastewaters and Soils<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5870/report/0">R828598C789</a> Genetic Engineering of Enzymatic Cyanide Clearance<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5882/report/0">R828598C791</a> Characterizing the Intrinsic Remediation of MTBE at Field Sites<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5878/report/0">R828598C799</a> Simultaneous Water Conservation/Recycling/Reuse and Waste Reduction in Semiconductor Manufacturing<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/7926/report/0">R828598C801</a> Building Defined Mixed Cultures To Biodegrade Diverse Mixtures Of Chlorinated Solvents<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5881/report/0">R828598C802</a> Engineering of Nanocrystal Based Catalytic Materials for Hydroprocessing of Halogenated Organics<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5872/report/0">R828598C807</a> Commercial Demonstration of Hydrogen Peroxide Injection to Control NOx Emissions from Combustion Sources<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5883/report/0">R828598C809</a> Evaluating Source Grouting and ORC for Remediating MTBE Sites<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/7927/report/0">R828598C810</a> Application of Total Cost Assessment To Process Design In the Chemical Industry<br>
<a href="https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.abstractDetail/abstract/5877/report/0">R828598C846</a> Quantitative Demonstration of Source-Zone Bioremediation in A Field-Scale Experimental Controlled Release System<br>
</p> </div>
</div>
</div>
<div id="block-epa-og-footer" class="block block-epa-og">
<p class="pagetop"><a href="#content">Top of Page</a></p>
<!--googleoff: all-->
<p id="epa-og-footer"> The perspectives, information and conclusions conveyed in research project abstracts, progress reports, final reports, journal abstracts and journal publications convey the viewpoints of the principal investigator and may not represent the views and policies of ORD and EPA. Conclusions drawn by the principal investigators have not been reviewed by the Agency. </p>
</div>
<!--googleoff: all-->
</div>
</section>
<nav class="nav simple-nav simple-main-nav" role="navigation">
<div class="nav__inner">
<h2 class="element-invisible">Main menu</h2>
<ul class="menu" role="menu">
<li class="menu-item" id="menu-learn" role="presentation"><a href="https://www.epa.gov/environmental-topics" title="Learn about EPA's environmental topics to help protect the environment in your home, workplace, and community and EPA's research mission is to conduct leading-edge research and foster the sound use of science and technology." class="menu-link" role="menuitem">Environmental Topics</a></li>
<li class="menu-item" id="menu-lawsregs" role="presentation"><a href="https://www.epa.gov/laws-regulations" title="Laws written by Congress provide the authority for EPA to write regulations. Regulations explain the technical, operational, and legal details necessary to implement laws." class="menu-link" role="menuitem">Laws & Regulations</a></li>
<li class="menu-item" id="menu-about" role="presentation"><a href="https://www.epa.gov/aboutepa" title="Learn more about: our mission and what we do, how we are organized, and our history." class="menu-link" role="menuitem">About EPA</a></li>
</ul>
</div>
</nav>
<footer class="main-footer clearfix" role="contentinfo">
<div class="main-footer__inner">
<div class="region-footer">
<div class="block block-pane block-pane-epa-global-footer">
<div class="row cols-3">
<div class="col size-1of3">
<div class="col__title">Discover.</div>
<ul class="menu">
<li><a href="https://www.epa.gov/accessibility">Accessibility</a></li>
<li><a href="https://www.epa.gov/aboutepa/administrator-gina-mccarthy">EPA Administrator</a></li>
<li><a href="https://www.epa.gov/planandbudget">Budget & Performance</a></li>
<li><a href="https://www.epa.gov/contracts">Contracting</a></li>
<li><a href="https://www.epa.gov/home/grants-and-other-funding-opportunities">Grants</a></li>
<li><a href="https://www.epa.gov/ocr/whistleblower-protections-epa-and-how-they-relate-non-disclosure-agreements-signed-epa-employees">No FEAR Act Data</a></li>
<li><a href="https://www.epa.gov/home/privacy-and-security-notice">Privacy and Security</a></li>
</ul>
</div>
<div class="col size-1of3">
<div class="col__title">Connect.</div>
<ul class="menu">
<li><a href="https://www.data.gov/">Data.gov</a></li>
<li><a href="https://www.epa.gov/office-inspector-general/about-epas-office-inspector-general">Inspector General</a></li>
<li><a href="https://www.epa.gov/careers">Jobs</a></li>
<li><a href="https://www.epa.gov/newsroom">Newsroom</a></li>
<li><a href="https://www.whitehouse.gov/open">Open Government</a></li>
<li><a href="http://www.regulations.gov/">Regulations.gov</a></li>
<li><a href="https://www.epa.gov/newsroom/email-subscriptions">Subscribe</a></li>
<li><a href="https://www.usa.gov/">USA.gov</a></li>
<li><a href="https://www.whitehouse.gov/">White House</a></li>
</ul>
</div>
<div class="col size-1of3">
<div class="col__title">Ask.</div>
<ul class="menu">
<li><a href="https://www.epa.gov/home/forms/contact-us">Contact Us</a></li>
<li><a href="https://www.epa.gov/home/epa-hotlines">Hotlines</a></li>
<li><a href="https://www.epa.gov/foia">FOIA Requests</a></li>
<li><a href="https://www.epa.gov/home/frequent-questions-specific-epa-programstopics">Frequent Questions</a></li>
</ul>
<div class="col__title">Follow.</div>
<ul class="social-menu">
<li><a class="menu-link social-facebook" href="https://www.facebook.com/EPA">Facebook</a></li>
<li><a class="menu-link social-twitter" href="https://twitter.com/epa">Twitter</a></li>
<li><a class="menu-link social-youtube" href="https://www.youtube.com/user/USEPAgov">YouTube</a></li>
<li><a class="menu-link social-flickr" href="https://www.flickr.com/photos/usepagov">Flickr</a></li>
<li><a class="menu-link social-instagram" href="https://instagram.com/epagov">Instagram</a></li>
</ul>
<p class="last-updated">Last updated on Monday, March 17, 2003</p>
</div>
</div>
</div>
</div>
</div>
</footer>
<script src="https://www.epa.gov/sites/all/libraries/template2/jquery.js"></script>
<script src="https://www.epa.gov/sites/all/libraries/template/js.js"></script>
<script src="https://www.epa.gov/sites/all/modules/custom/epa_core/js/alert.js"></script>
<script src="https://www.epa.gov/sites/all/modules/contrib/jquery_update/replace/ui/ui/minified/jquery.ui.core.min.js"></script>
<script src="https://www.epa.gov/sites/all/modules/contrib/jquery_update/replace/ui/ui/minified/jquery.ui.widget.min.js"></script>
<script src="https://www.epa.gov/sites/all/modules/contrib/jquery_update/replace/ui/ui/minified/jquery.ui.position.min.js"></script>
<script src="https://www.epa.gov/sites/all/modules/contrib/jquery_update/replace/ui/ui/minified/jquery.ui.autocomplete.min.js"></script>
<!--[if lt IE 9]><script src="https://www.epa.gov/sites/all/themes/epa/js/ie.js"></script><![endif]-->
<!-- REMOVE if not using -->
<script language=javascript>
<!-- // Activate cloak
// pressing enter will not default submit the first defined button but the programmed defined button
function chkCDVal(cdVal)
{
var isErr = true;
try{
var CDParts = cdVal.split(',');
var st = CDParts[0];
var cd = CDParts[1];
var objRegExp = new RegExp('[0-9][0-9]');
if (!isNaN(st)) {
isErr = false;
}
if (!objRegExp.test(cd) || (cd.length>3)){
isErr = false;
}
}
catch(err){
isErr = false;
}
return isErr;
}
function checkCongDist(cdtxt)
{
//alert(cdtxt.value);
if (!chkCDVal(cdtxt.value)) {
alert('Congressional District MUST be in the following format: state, district; example: Virginia, 08');
return false;
}
else {
return true;
}
}
function fnTrapKD(btn, event)
{
var btn = getObject(btn);
if (document.all)
{
if (event.keyCode == 13)
{
event.returnValue=false;event.cancel = true;btn.click();
}
}
else
{
if (event.which == 13)
{
event.returnValue=false;event.cancelBubble = true;btn.click();
}
}
}
function CheckFilter()
{ if (document.searchform.presetTopic.options[document.searchform.presetTopic.selectedIndex].value == 'NA'){
alert('You must select a subtopic. \n This item is not selectable');
document.searchform.presetTopic.options[0].selected = true;
}
}
function openHelpWindow(url,title,scrollable)
{
var win = window.open(url,"title",'width=300,height=220,left=320,top=150,resizable=1,scrollbars='+scrollable+',menubar=no,status=no');
win.focus();
}
function openNewWindow(url,title,scrollable)
{
var win = window.open(url,"title",'width=300,height=220,left=320,top=150,resizable=1,scrollbars='+scrollable+',menubar=no,status=no');
}
function openNewWindow(url,title)
{
var win = window.open(url,"title",'width=300,height=220,left=320,top=150,resizable=1,scrollbars=no,menubar=no,status=no');
}
function openNewMapWindow(url,title)
{
var win = window.open(url,"title",'width=800,height=450,left=320,top=150,resizable=1,scrollbars=no,menubar=no,status=no');
}
function openNoticeWindow(url,title)
{
var win = window.open(url,"title",'width=300,height=150,left=500,top=150,resizable=1,scrollbars=no,menubar=no,status=no');
}
function openNewSearchWindow(site,subj)
{
title = 'window';
var win = window.open('https://cfpub.epa.gov/ncer_abstracts/index.cfm/fuseaction/display.pubsearch/site/' + site + '/redirect/' + subj,"title",'width=640,height=480,resizable=1,scrollbars=yes,menubar=yes,status=no');
}
function autoCheck(name)
{
document.forms['thisForm'].elements[name].checked = true;
}
function alertUser()
{
var ok = alert("This search might take longer than expected. Please refrain from hitting the refresh or reload button on your browser. The search results will appear after the search is complete. Thank you.");
}
function closePopupWindow(redirectUrl)
{
opener.location = redirectUrl;
opener.focus();
this.close();
}
//-->
</script>
</body>
</html> |
_site/about/index.html | nealbob/nealbob.github.io | <!doctype html>
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]-->
<!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title>About me – Neal Hughes</title>
<meta name="keywords" content="about">
<!-- Twitter Cards -->
<meta name="twitter:title" content="About me">
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="http://localhost:4000/images/default-thumb.png">
<!-- Open Graph -->
<meta property="og:locale" content="en_US">
<meta property="og:type" content="article">
<meta property="og:title" content="About me">
<meta property="og:url" content="http://localhost:4000/about/">
<meta property="og:site_name" content="Neal Hughes">
<link rel="canonical" href="http://localhost:4000/about/">
<link href="http://localhost:4000/feed.xml" type="application/atom+xml" rel="alternate" title="Neal Hughes Feed">
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- For all browsers -->
<link rel="stylesheet" href="http://localhost:4000/assets/css/main.css">
<meta http-equiv="cleartype" content="on">
<!-- HTML5 Shiv and Media Query Support -->
<!--[if lt IE 9]>
<script src="http://localhost:4000/assets/js/vendor/html5shiv.min.js"></script>
<script src="http://localhost:4000/assets/js/vendor/respond.min.js"></script>
<![endif]-->
<!-- Modernizr -->
<script src="http://localhost:4000/assets/js/vendor/modernizr-2.7.1.custom.min.js"></script>
<link href='//fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700%7CPT+Serif:400,700,400italic' rel='stylesheet' type='text/css'>
<!-- Icons -->
<!-- 16x16 -->
<link rel="shortcut icon" href="http://localhost:4000/favicon.ico">
<!-- 32x32 -->
<link rel="shortcut icon" href="http://localhost:4000/favicon.png">
<!-- 57x57 (precomposed) for iPhone 3GS, pre-2011 iPod Touch and older Android devices -->
<link rel="apple-touch-icon-precomposed" href="http://localhost:4000/images/apple-touch-icon-precomposed.png">
<!-- 72x72 (precomposed) for 1st generation iPad, iPad 2 and iPad mini -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://localhost:4000/images/apple-touch-icon-72x72-precomposed.png">
<!-- 114x114 (precomposed) for iPhone 4, 4S, 5 and post-2011 iPod Touch -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://localhost:4000/images/apple-touch-icon-114x114-precomposed.png">
<!-- 144x144 (precomposed) for iPad 3rd and 4th generation -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://localhost:4000/images/apple-touch-icon-144x144-precomposed.png">
</head>
<body class="page">
<!--[if lt IE 9]><div class="browser-upgrade alert alert-info">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</div><![endif]-->
<div class="navigation-wrapper">
<div class="site-name">
<a href="http://localhost:4000">Neal Hughes</a>
</div><!-- /.site-name -->
<div class="top-navigation">
<nav role="navigation" id="site-nav" class="nav">
<ul>
<li><a href="http://localhost:4000/about/" >About</a></li>
<li><a href="http://localhost:4000/posts/" >Posts</a></li>
<li><a href="http://localhost:4000/research/" >Research</a></li>
<li><a href="http://localhost:4000/code/" >Code</a></li>
</ul>
</nav>
</div><!-- /.top-navigation -->
</div><!-- /.navigation-wrapper -->
<div id="main" role="main">
<div class="article-author-side">
<img src="http://localhost:4000/images/bio-photo.jpg" class="bio-photo" alt="Neal Hughes bio photo">
<h3>Neal Hughes</h3>
<p>Economist.<br> <s>Public</s> Toddler servant.</p>
<a href="mailto:neal.hughes@anu.edu.au" class="author-social" target="_blank"><i class="fa fa-envelope-square"></i> Email</a>
<a href="http://facebook.com/neal.hughes.370" class="author-social" target="_blank"><i class="fa fa-facebook-square"></i> Facebook</a>
<a href="http://github.com/nealbob" class="author-social" target="_blank"><i class="fa fa-github"></i> Github</a>
<a href="http://stackoverflow.com/users/2910587/neal-hughes" class="author-social" target="_blank"><i class="fa fa-stack-overflow"></i> Stackoverflow</a>
<a href="http://www.strava.com/athletes/nealbob" class="author-social" target="_blank"><i class="fa fa-globe"></i> Strava</a>
</div>
<article>
<h1>About me</h1>
<div class="article-wrap">
<p>I’m an economist working at <a href="http://www.daff.gov.au/abares">ABARES</a> and completing a Phd at the <a href="https://crawford.anu.edu.au/people/phd/neal-hughes">ANU</a> with the aid a <a href="http://srwfoundation.anu.edu.au/phd-scholarships/">Sir Roland Wilson scholarship</a>.</p>
<p>A lot of my <a href="../research">research</a> has focused on water, particularly water property rights and markets in the context of storage (i.e., large dams). Here is my <a href="../images/cv_7.pdf">CV</a>. </p>
<p>I live in Canberra, Australia with my wife Kylie and daughter Elizabeth.</p>
<figure>
<img src="http://nealbob.github.io/images/dadee.jpg" />
</figure>
</div><!-- /.article-wrap -->
</article>
</div><!-- /#index -->
<div class="footer-wrap">
<footer>
<span>© 2015 Neal Hughes. Powered by <a href="http://jekyllrb.com">Jekyll</a> using the <a href="http://mademistakes.com/minimal-mistakes/">Minimal Mistakes</a> theme.</span>
</footer>
</div><!-- /.footer-wrap -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="http://localhost:4000/assets/js/vendor/jquery-1.9.1.min.js"><\/script>')</script>
<script src="http://localhost:4000/assets/js/scripts.min.js"></script>
</body>
</html> |
public_html/specialisms.html | eamonnkillian/WebSiteExampleTwo | <!--
Created originally on : 19-Feb-2014
Author : Eamonn Killian
Web : www.eamonnkillian.com
Contact : eamonnkillian@gmail.com
The specialisms html file for the Web Site Example 1 site.
-->
<script type="text/javascript">
$(document).ready(function() {
$("#specBackground1").animate({left: '-1950px'}, 1400);
activeItem = $("#accordion li:first");
$(activeItem).addClass('active');
$("#accordion li").click(function() {
$(activeItem).animate({width: "75px"}, {duration: 100, queue: false});
$(this).animate({width: "375px"}, {duration: 100, queue: false});
activeItem = this;
});
})
</script>
<div id="specBackground">
<div id="specBackground1">
</div>
<ul id="accordion">
<li>
<img src="img/Specialism1.png" alt="" height="700" width="100"/>
<div class="executiveLI">
<strong><h2>Specialism#1</h2></strong><br/>
<table>
<tr>
<td class="specTableTD">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum.
<br> <br>
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi
architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione
voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit
amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis
nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate
velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat
quo voluptas nulla pariatur? <br> <br>
</td>
</tr>
</table><br> <br>
For more information please:
<input type="button" class="contact-button" value="eMail Eamonn" onClick="parent.location = 'mailto:eamonnkillian@gmail.com?subject=Getting in touch...'">
</div>
</li>
<li>
<img src="img/Specialism2.png" alt="" height="700" width="100"/>
<div class="executiveLI">
<strong><h2>Specialism#2</h2></strong><br/>
<table>
<tr>
<td class="specTableTD">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum.
<br> <br>
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi
architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione
voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit
amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis
nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate
velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat
quo voluptas nulla pariatur? <br> <br>
</td>
</tr>
</table><br> <br>
For more information please:
<input type="button" class="contact-button" value="eMail Eamonn" onClick="parent.location = 'mailto:eamonnkillian@gmail.com?subject=Getting in touch...'">
</div>
</li>
<li>
<img src="img/Specialism3.png" alt="" height="700" width="100"/>
<div class="executiveLI">
<strong><h2>Specialism#3</h2></strong><br/>
<table>
<tr>
<td class="specTableTD">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum.
<br> <br>
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi
architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione
voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit
amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis
nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate
velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat
quo voluptas nulla pariatur? <br> <br>
</td>
</tr>
</table><br> <br>
For more information please:
<input type="button" class="contact-button" value="eMail Eamonn" onClick="parent.location = 'mailto:eamonnkillian@gmail.com?subject=Getting in touch...'">
</div>
</li>
<li>
<img src="img/Specialism4.png" alt="" height="700" width="100"/>
<div class="executiveLI">
<strong><h2>Specialism#4</h2></strong><br/>
<table>
<tr>
<td class="specTableTD">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum.
<br> <br>
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi
architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione
voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit
amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis
nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate
velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat
quo voluptas nulla pariatur? <br> <br>
</td>
</tr>
</table><br> <br>
For more information please:
<input type="button" class="contact-button" value="eMail Eamonn" onClick="parent.location = 'mailto:eamonnkillian@gmail.com?subject=Getting in touch...'">
</div>
</li>
<li>
<img src="img/Specialism5.png" alt="" height="700" width="100"/>
<div class="executiveLI">
<strong><h2>Specialism#5</h2></strong><br/>
<table>
<tr>
<td class="specTableTD">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum.
<br> <br>
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi
architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione
voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit
amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis
nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate
velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat
quo voluptas nulla pariatur? <br> <br>
</td>
</tr>
</table><br> <br>
For more information please:
<input type="button" class="contact-button" value="eMail Eamonn" onClick="parent.location = 'mailto:eamonnkillian@gmail.com?subject=Getting in touch...'">
</div>
</li>
<li>
<img src="img/Specialism6.png" alt="" height="700" width="100"/>
<div class="executiveLI">
<strong><h2>Specialism#6</h2></strong><br/>
<table>
<tr>
<td class="specTableTD">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum.
<br> <br>
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi
architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione
voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit
amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis
nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate
velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat
quo voluptas nulla pariatur? <br> <br>
</td>
</tr>
</table><br> <br>
For more information please:
<input type="button" class="contact-button" value="eMail Eamonn" onClick="parent.location = 'mailto:eamonnkillian@gmail.com?subject=Getting in touch...'">
</div>
</li>
<li>
<img src="img/Specialism7.png" alt="" height="700" width="100"/>
<div class="executiveLI">
<strong><h2>Specialism#7</h2></strong><br/>
<table>
<tr>
<td class="specTableTD">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum.
<br> <br>
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi
architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione
voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit
amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut
labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis
nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate
velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat
quo voluptas nulla pariatur? <br> <br>
</td>
</tr>
</table><br> <br>
For more information please:
<input type="button" class="contact-button" value="eMail Eamonn" onClick="parent.location = 'mailto:eamonnkillian@gmail.com?subject=Getting in touch...'">
</div>
</li>
</ul>
</div> |
app/components/controlPanel/commandStatusTmpl.html | wecodeingit/omc | <div class="text-left">
{{#if this.Last_Executed_Command_ID}} [
<label>Last Executed Command ID : </label>
<span>{{this.Last_Executed_Command_ID}}</span>,
<label>Last Executed Command : </label>
<span>{{this.Last_Executed_Command}}</span>,
<label>Command Acceptance Counter : </label>
<span>{{this.Command_Acceptance_Counter}}</span>,
<label>Command Rejection Counter : </label>
<span>{{this.Command_Rejection_Counter}}</span>,
<label>Command Stack Status : </label>
<span>{{this.Command_Stack_Status}}</span> ] {{/if}} {{#unless this.Last_Executed_Command_ID}}
<p> Click on the graph points to get specific data </p>
{{/unless}}
</div>
|
doc/rdoc/files/vendor/plugins/active_scaffold/lib/bridges/file_column/bridge_rb.html | NESCent/max-bodysize-evol | <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>File: bridge.rb</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<link rel="stylesheet" href="../../../../../../.././rdoc-style.css" type="text/css" media="screen" />
<script type="text/javascript">
// <![CDATA[
function popupCode( url ) {
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
}
function toggleCode( id ) {
if ( document.getElementById )
elem = document.getElementById( id );
else if ( document.all )
elem = eval( "document.all." + id );
else
return false;
elemStyle = elem.style;
if ( elemStyle.display != "block" ) {
elemStyle.display = "block"
} else {
elemStyle.display = "none"
}
return true;
}
// Make codeblocks hidden by default
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
// ]]>
</script>
</head>
<body>
<div id="fileHeader">
<h1>bridge.rb</h1>
<table class="header-table">
<tr class="top-aligned-row">
<td><strong>Path:</strong></td>
<td>vendor/plugins/active_scaffold/lib/bridges/file_column/bridge.rb
</td>
</tr>
<tr class="top-aligned-row">
<td><strong>Last Update:</strong></td>
<td>Mon Sep 29 09:08:30 -0400 2008</td>
</tr>
</table>
</div>
<!-- banner header -->
<div id="bodyContent">
<div id="contextContent">
</div>
</div>
<!-- if includes -->
<div id="section">
<!-- if method_list -->
</div>
<div id="validator-badges">
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
</div>
</body>
</html> |
About/css/business-frontpage.css | Panda-Fromjaf/Panda_Games | /*
* Start Bootstrap - Business Frontpage (http://startbootstrap.com/)
* Copyright 2013-2016 Start Bootstrap
* Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE)
*/
body {
padding-top: 50px; /* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */
}
/* Header Image Background - Change the URL below to your image path (example: ../images/background.jpg) */
.business-header {
height: 400px;
background: url('../Images/AboutHeader.png') center center no-repeat scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
/* Customize the text color and shadow color and to optimize text legibility. */
.tagline {
text-shadow: 0 0 10px #000;
color: #fff;
}
.img-center {
margin: 0 auto;
}
footer {
margin: 50px 0;
}
|
src/ui/index.html | randfst/freckles | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../../node_modules/quill/dist/quill.core.css">
<link rel="stylesheet" href="../../node_modules/quill/dist/quill.bubble.css">
<link rel="stylesheet" href="../../static/styles/build/style.css">
</head>
<body>
<div id="App"></div>
</body>
<script>window.exports = module.exports</script>
<script type="text/tsx">
// TODO: Create index.tsx
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import { AppContainer } from 'react-hot-loader';
let render = () => {
const { App } = require('./App');
ReactDOM.render(<AppContainer children={<App />}></AppContainer>,
document.getElementById('App'));
}
render();
if (module.hot) { module.hot.accept(render); }
</script>
</html> |
clean/Linux-x86_64-4.02.3-2.0.6/released/8.4.5/zchinese/8.7.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>zchinese: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.4.5 / zchinese - 8.7.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
zchinese
<small>
8.7.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-05 04:20:23 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-05 04:20:23 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-ocamlbuild base OCamlbuild binary and libraries distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.4.5 Formal proof management system.
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.02.3 The OCaml compiler (virtual package)
ocaml-base-compiler 4.02.3 Official 4.02.3 release
ocaml-config 1 OCaml Switch Configuration
ocamlbuild 0 Build system distributed with the OCaml compiler since OCaml 3.10.0
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/zchinese"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/ZChinese"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
tags: [ "keyword: number theory" "keyword: chinese remainder" "keyword: primality" "keyword: prime numbers" "category: Mathematics/Arithmetic and Number Theory/Number theory" "category: Miscellaneous/Extracted Programs/Arithmetic" ]
authors: [ "Valérie Ménissier-Morain" ]
bug-reports: "https://github.com/coq-contribs/zchinese/issues"
dev-repo: "git+https://github.com/coq-contribs/zchinese.git"
synopsis: "A proof of the Chinese Remainder Lemma"
description:
"This is a rewriting of the contribution chinese-lemma using Zarith"
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/zchinese/archive/v8.7.0.tar.gz"
checksum: "md5=1ab48fb8b7e465c03507ec79d9f77f32"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-zchinese.8.7.0 coq.8.4.5</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.4.5).
The following dependencies couldn't be met:
- coq-zchinese -> coq >= 8.7 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-zchinese.8.7.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
IssueTrackingSystemProjectAngularJS/Angular-Project-March-2016/templates/addProject.html | Tisho-Todorov/Issue-Tracking-System-Project-AngularJS | <form action="/" method="post">
<p>New Project</p>
<label>Name</label>
<input type="text" value="new project"/>
<br />
<label>Description</label>
<input type="text" value="lorem ipsum"/>
<br />
<label>ProjectKey</label>
<input type="text" value="np" />
<br />
<label>LeadId</label>
<input type="text" value="georgi@goshku.com" />
<br />
<label>Priorities (separated by comma)</label>
<input type="text" value="Low, Medium, Urgent" />
<br />
<button>Add Project</button>
</form> |
woocommerce.docset/Contents/Resources/Documents/docs/source-class-WC_Widget_Product_Tag_Cloud.html | GioSensation/woocommerce-dash-docset | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="ApiGen 2.8.0" />
<title>File classes/widgets/class-wc-widget-product-tag-cloud.php | WooCommerce</title>
<script type="text/javascript" src="resources/combined-1359452498.js"></script>
<script type="text/javascript" src="elementlist-2750599401.js"></script>
<link rel="stylesheet" type="text/css" media="all" href="resources/bootstrap.min-2450451432.css" />
<link rel="stylesheet" type="text/css" media="all" href="resources/style-1319793728.css" />
</head>
<body>
<div id="navigation" class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a href="index.html" class="brand">WooCommerce</a>
<div class="nav-collapse">
<ul class="nav">
<li>
<a href="package-WooCommerce.Widgets.html" title="Summary of WooCommerce\Widgets"><span>Package</span></a>
</li>
<li>
<a href="class-WC_Widget_Product_Tag_Cloud.html" title="Summary of WC_Widget_Product_Tag_Cloud"><span>Class</span></a>
</li>
<li class="divider-vertical"></li>
<li>
<a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a>
</li>
<li class="divider-vertical"></li>
<li>
<a href="woocommerce-api-documentation.zip" title="Download documentation as ZIP archive"><span>Download</span></a>
</li>
<li class="divider-vertical"></li>
<li>
<a href="http://docs.woothemes.com/" title="Go back to WooCommerce Docs"><span>← Back to WooDocs</span></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="left">
<div id="menu">
<form id="search" class="form-search">
<input type="hidden" name="cx" value="" />
<input type="hidden" name="ie" value="UTF-8" />
<input type="text" name="q" class="search-query" placeholder="Search" />
</form>
<div id="groups">
<h3>Packages</h3>
<ul>
<li class="active"><a href="package-WooCommerce.html">WooCommerce<span></span></a>
<ul>
<li><a href="package-WooCommerce.Abstracts.html">Abstracts</a>
</li>
<li><a href="package-WooCommerce.Admin.html">Admin<span></span></a>
<ul>
<li><a href="package-WooCommerce.Admin.Coupons.html">Coupons</a>
</li>
<li><a href="package-WooCommerce.Admin.Dashboard.html">Dashboard</a>
</li>
<li><a href="package-WooCommerce.Admin.Import.html">Import</a>
</li>
<li><a href="package-WooCommerce.Admin.Importers.html">Importers</a>
</li>
<li><a href="package-WooCommerce.Admin.Install.html">Install</a>
</li>
<li><a href="package-WooCommerce.Admin.Orders.html">Orders</a>
</li>
<li><a href="package-WooCommerce.Admin.Products.html">Products</a>
</li>
<li><a href="package-WooCommerce.Admin.Reports.html">Reports</a>
</li>
<li><a href="package-WooCommerce.Admin.Settings.html">Settings</a>
</li>
<li><a href="package-WooCommerce.Admin.System.html">System</a>
</li>
<li><a href="package-WooCommerce.Admin.Taxonomies.html">Taxonomies</a>
</li>
<li><a href="package-WooCommerce.Admin.Updates.html">Updates</a>
</li>
<li><a href="package-WooCommerce.Admin.Users.html">Users</a>
</li>
<li><a href="package-WooCommerce.Admin.WritePanels.html">WritePanels</a>
</li>
</ul></li>
<li><a href="package-WooCommerce.Classes.html">Classes<span></span></a>
<ul>
<li><a href="package-WooCommerce.Classes.Emails.html">Emails</a>
</li>
<li><a href="package-WooCommerce.Classes.Integrations.html">Integrations</a>
</li>
<li><a href="package-WooCommerce.Classes.Payment.html">Payment</a>
</li>
<li><a href="package-WooCommerce.Classes.Products.html">Products</a>
</li>
<li><a href="package-WooCommerce.Classes.Shipping.html">Shipping</a>
</li>
<li><a href="package-WooCommerce.Classes.Walkers.html">Walkers</a>
</li>
</ul></li>
<li><a href="package-WooCommerce.Functions.html">Functions<span></span></a>
<ul>
<li><a href="package-WooCommerce.Functions.AJAX.html">AJAX</a>
</li>
</ul></li>
<li><a href="package-WooCommerce.Shortcodes.html">Shortcodes<span></span></a>
<ul>
<li><a href="package-WooCommerce.Shortcodes.Cart.html">Cart</a>
</li>
<li><a href="package-WooCommerce.Shortcodes.Change.html">Change<span></span></a>
<ul>
<li><a href="package-WooCommerce.Shortcodes.Change.Password.html">Password</a>
</li>
</ul></li>
<li><a href="package-WooCommerce.Shortcodes.Checkout.html">Checkout</a>
</li>
<li><a href="package-WooCommerce.Shortcodes.Edit.html">Edit<span></span></a>
<ul>
<li><a href="package-WooCommerce.Shortcodes.Edit.Address.html">Address</a>
</li>
</ul></li>
<li><a href="package-WooCommerce.Shortcodes.Lost.html">Lost<span></span></a>
<ul>
<li><a href="package-WooCommerce.Shortcodes.Lost.Password.html">Password</a>
</li>
</ul></li>
<li><a href="package-WooCommerce.Shortcodes.My.html">My<span></span></a>
<ul>
<li><a href="package-WooCommerce.Shortcodes.My.Account.html">Account</a>
</li>
</ul></li>
<li><a href="package-WooCommerce.Shortcodes.Order.html">Order<span></span></a>
<ul>
<li><a href="package-WooCommerce.Shortcodes.Order.Tracking.html">Tracking</a>
</li>
</ul></li>
<li><a href="package-WooCommerce.Shortcodes.Pay.html">Pay</a>
</li>
<li><a href="package-WooCommerce.Shortcodes.Thankyou.html">Thankyou</a>
</li>
<li><a href="package-WooCommerce.Shortcodes.View.html">View<span></span></a>
<ul>
<li><a href="package-WooCommerce.Shortcodes.View.Order.html">Order</a>
</li>
</ul></li></ul></li>
<li><a href="package-WooCommerce.Templates.html">Templates<span></span></a>
<ul>
<li><a href="package-WooCommerce.Templates.Archives.html">Archives</a>
</li>
<li><a href="package-WooCommerce.Templates.Cart.html">Cart</a>
</li>
<li><a href="package-WooCommerce.Templates.Checkout.html">Checkout</a>
</li>
<li><a href="package-WooCommerce.Templates.Forms.html">Forms</a>
</li>
<li><a href="package-WooCommerce.Templates.Loop.html">Loop</a>
</li>
<li><a href="package-WooCommerce.Templates.Orders.html">Orders</a>
</li>
<li><a href="package-WooCommerce.Templates.Product.html">Product<span></span></a>
<ul>
<li><a href="package-WooCommerce.Templates.Product.Tabs.html">Tabs</a>
</li>
</ul></li></ul></li>
<li class="active"><a href="package-WooCommerce.Widgets.html">Widgets</a>
</li>
</ul></li>
</ul>
</div>
<div id="elements">
<h3>Classes</h3>
<ul>
<li><a href="class-WC_Widget_Best_Sellers.html">WC_Widget_Best_Sellers</a></li>
<li><a href="class-WC_Widget_Cart.html">WC_Widget_Cart</a></li>
<li><a href="class-WC_Widget_Featured_Products.html">WC_Widget_Featured_Products</a></li>
<li><a href="class-WC_Widget_Layered_Nav.html">WC_Widget_Layered_Nav</a></li>
<li><a href="class-WC_Widget_Layered_Nav_Filters.html">WC_Widget_Layered_Nav_Filters</a></li>
<li><a href="class-WC_Widget_Onsale.html">WC_Widget_Onsale</a></li>
<li><a href="class-WC_Widget_Price_Filter.html">WC_Widget_Price_Filter</a></li>
<li><a href="class-WC_Widget_Product_Categories.html">WC_Widget_Product_Categories</a></li>
<li><a href="class-WC_Widget_Product_Search.html">WC_Widget_Product_Search</a></li>
<li class="active"><a href="class-WC_Widget_Product_Tag_Cloud.html">WC_Widget_Product_Tag_Cloud</a></li>
<li><a href="class-WC_Widget_Random_Products.html">WC_Widget_Random_Products</a></li>
<li><a href="class-WC_Widget_Recent_Products.html">WC_Widget_Recent_Products</a></li>
<li><a href="class-WC_Widget_Recent_Reviews.html">WC_Widget_Recent_Reviews</a></li>
<li><a href="class-WC_Widget_Recently_Viewed.html">WC_Widget_Recently_Viewed</a></li>
<li><a href="class-WC_Widget_Top_Rated_Products.html">WC_Widget_Top_Rated_Products</a></li>
</ul>
<h3>Functions</h3>
<ul>
<li><a href="function-woocommerce_layered_nav_init.html">woocommerce_layered_nav_init</a></li>
<li><a href="function-woocommerce_layered_nav_query.html">woocommerce_layered_nav_query</a></li>
<li><a href="function-woocommerce_price_filter.html">woocommerce_price_filter</a></li>
<li><a href="function-woocommerce_price_filter_init.html">woocommerce_price_filter_init</a></li>
<li><a href="function-woocommerce_track_product_view.html">woocommerce_track_product_view</a></li>
</ul>
</div>
</div>
</div>
<div id="splitter"></div>
<div id="right">
<div id="rightInner">
<pre id="source"><code><span id="1" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#1"> 1 </a><span class="xlang"><?php</span>
</span><span id="2" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#2"> 2 </a><span class="php-comment">/**
</span></span><span id="3" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#3"> 3 </a><span class="php-comment"> * Tag Cloud Widget
</span></span><span id="4" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#4"> 4 </a><span class="php-comment"> *
</span></span><span id="5" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#5"> 5 </a><span class="php-comment"> * @author WooThemes
</span></span><span id="6" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#6"> 6 </a><span class="php-comment"> * @category Widgets
</span></span><span id="7" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#7"> 7 </a><span class="php-comment"> * @package WooCommerce/Widgets
</span></span><span id="8" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#8"> 8 </a><span class="php-comment"> * @version 1.6.4
</span></span><span id="9" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#9"> 9 </a><span class="php-comment"> * @extends WP_Widget
</span></span><span id="10" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#10"> 10 </a><span class="php-comment"> */</span>
</span><span id="11" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#11"> 11 </a>
</span><span id="12" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#12"> 12 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">defined</span>( <span class="php-quote">'ABSPATH'</span> ) ) <span class="php-keyword1">exit</span>; <span class="php-comment">// Exit if accessed directly</span>
</span><span id="13" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#13"> 13 </a>
</span><span id="14" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#14"> 14 </a><span class="php-keyword1">class</span> <a id="WC_Widget_Product_Tag_Cloud" href="source-class-WC_Widget_Product_Tag_Cloud.html#WC_Widget_Product_Tag_Cloud">WC_Widget_Product_Tag_Cloud</a> <span class="php-keyword1">extends</span> WP_Widget {
</span><span id="15" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#15"> 15 </a>
</span><span id="16" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#16"> 16 </a> <span class="php-keyword1">var</span> <span class="php-var"><a id="$woo_widget_cssclass" href="source-class-WC_Widget_Product_Tag_Cloud.html#$woo_widget_cssclass">$woo_widget_cssclass</a></span>;
</span><span id="17" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#17"> 17 </a> <span class="php-keyword1">var</span> <span class="php-var"><a id="$woo_widget_description" href="source-class-WC_Widget_Product_Tag_Cloud.html#$woo_widget_description">$woo_widget_description</a></span>;
</span><span id="18" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#18"> 18 </a> <span class="php-keyword1">var</span> <span class="php-var"><a id="$woo_widget_idbase" href="source-class-WC_Widget_Product_Tag_Cloud.html#$woo_widget_idbase">$woo_widget_idbase</a></span>;
</span><span id="19" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#19"> 19 </a> <span class="php-keyword1">var</span> <span class="php-var"><a id="$woo_widget_name" href="source-class-WC_Widget_Product_Tag_Cloud.html#$woo_widget_name">$woo_widget_name</a></span>;
</span><span id="20" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#20"> 20 </a>
</span><span id="21" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#21"> 21 </a> <span class="php-comment">/**
</span></span><span id="22" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#22"> 22 </a><span class="php-comment"> * constructor
</span></span><span id="23" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#23"> 23 </a><span class="php-comment"> *
</span></span><span id="24" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#24"> 24 </a><span class="php-comment"> * @access public
</span></span><span id="25" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#25"> 25 </a><span class="php-comment"> * @return void
</span></span><span id="26" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#26"> 26 </a><span class="php-comment"> */</span>
</span><span id="27" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#27"> 27 </a> <span class="php-keyword1">function</span> <a id="_WC_Widget_Product_Tag_Cloud" href="source-class-WC_Widget_Product_Tag_Cloud.html#_WC_Widget_Product_Tag_Cloud">WC_Widget_Product_Tag_Cloud</a>() {
</span><span id="28" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#28"> 28 </a>
</span><span id="29" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#29"> 29 </a> <span class="php-comment">/* Widget variable settings. */</span>
</span><span id="30" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#30"> 30 </a> <span class="php-var">$this</span>->woo_widget_cssclass = <span class="php-quote">'woocommerce widget_product_tag_cloud'</span>;
</span><span id="31" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#31"> 31 </a> <span class="php-var">$this</span>->woo_widget_description = __( <span class="php-quote">'Your most used product tags in cloud format.'</span>, <span class="php-quote">'woocommerce'</span> );
</span><span id="32" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#32"> 32 </a> <span class="php-var">$this</span>->woo_widget_idbase = <span class="php-quote">'woocommerce_product_tag_cloud'</span>;
</span><span id="33" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#33"> 33 </a> <span class="php-var">$this</span>->woo_widget_name = __( <span class="php-quote">'WooCommerce Product Tags'</span>, <span class="php-quote">'woocommerce'</span> );
</span><span id="34" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#34"> 34 </a>
</span><span id="35" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#35"> 35 </a> <span class="php-comment">/* Widget settings. */</span>
</span><span id="36" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#36"> 36 </a> <span class="php-var">$widget_ops</span> = <span class="php-keyword1">array</span>( <span class="php-quote">'classname'</span> => <span class="php-var">$this</span>->woo_widget_cssclass, <span class="php-quote">'description'</span> => <span class="php-var">$this</span>->woo_widget_description );
</span><span id="37" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#37"> 37 </a>
</span><span id="38" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#38"> 38 </a> <span class="php-comment">/* Create the widget. */</span>
</span><span id="39" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#39"> 39 </a> <span class="php-var">$this</span>->WP_Widget(<span class="php-quote">'product_tag_cloud'</span>, <span class="php-var">$this</span>->woo_widget_name, <span class="php-var">$widget_ops</span>);
</span><span id="40" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#40"> 40 </a> }
</span><span id="41" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#41"> 41 </a>
</span><span id="42" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#42"> 42 </a> <span class="php-comment">/**
</span></span><span id="43" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#43"> 43 </a><span class="php-comment"> * widget function.
</span></span><span id="44" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#44"> 44 </a><span class="php-comment"> *
</span></span><span id="45" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#45"> 45 </a><span class="php-comment"> * @see WP_Widget
</span></span><span id="46" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#46"> 46 </a><span class="php-comment"> * @access public
</span></span><span id="47" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#47"> 47 </a><span class="php-comment"> * @param array $args
</span></span><span id="48" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#48"> 48 </a><span class="php-comment"> * @param array $instance
</span></span><span id="49" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#49"> 49 </a><span class="php-comment"> * @return void
</span></span><span id="50" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#50"> 50 </a><span class="php-comment"> */</span>
</span><span id="51" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#51"> 51 </a> <span class="php-keyword1">function</span> <a id="_widget" href="source-class-WC_Widget_Product_Tag_Cloud.html#_widget">widget</a>( <span class="php-var">$args</span>, <span class="php-var">$instance</span> ) {
</span><span id="52" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#52"> 52 </a> <span class="php-keyword2">extract</span>(<span class="php-var">$args</span>);
</span><span id="53" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#53"> 53 </a> <span class="php-var">$current_taxonomy</span> = <span class="php-var">$this</span>->_get_current_taxonomy(<span class="php-var">$instance</span>);
</span><span id="54" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#54"> 54 </a> <span class="php-keyword1">if</span> ( !<span class="php-keyword1">empty</span>(<span class="php-var">$instance</span>[<span class="php-quote">'title'</span>]) ) {
</span><span id="55" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#55"> 55 </a> <span class="php-var">$title</span> = <span class="php-var">$instance</span>[<span class="php-quote">'title'</span>];
</span><span id="56" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#56"> 56 </a> } <span class="php-keyword1">else</span> {
</span><span id="57" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#57"> 57 </a> <span class="php-keyword1">if</span> ( <span class="php-quote">'product_tag'</span> == <span class="php-var">$current_taxonomy</span> ) {
</span><span id="58" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#58"> 58 </a> <span class="php-var">$title</span> = __(<span class="php-quote">'Product Tags'</span>, <span class="php-quote">'woocommerce'</span> );
</span><span id="59" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#59"> 59 </a> } <span class="php-keyword1">else</span> {
</span><span id="60" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#60"> 60 </a> <span class="php-var">$tax</span> = get_taxonomy(<span class="php-var">$current_taxonomy</span>);
</span><span id="61" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#61"> 61 </a> <span class="php-var">$title</span> = <span class="php-var">$tax</span>->labels->name;
</span><span id="62" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#62"> 62 </a> }
</span><span id="63" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#63"> 63 </a> }
</span><span id="64" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#64"> 64 </a> <span class="php-var">$title</span> = apply_filters(<span class="php-quote">'widget_title'</span>, <span class="php-var">$title</span>, <span class="php-var">$instance</span>, <span class="php-var">$this</span>->id_base);
</span><span id="65" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#65"> 65 </a>
</span><span id="66" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#66"> 66 </a> <span class="php-keyword1">echo</span> <span class="php-var">$before_widget</span>;
</span><span id="67" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#67"> 67 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$title</span> )
</span><span id="68" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#68"> 68 </a> <span class="php-keyword1">echo</span> <span class="php-var">$before_title</span> . <span class="php-var">$title</span> . <span class="php-var">$after_title</span>;
</span><span id="69" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#69"> 69 </a> <span class="php-keyword1">echo</span> <span class="php-quote">'<div class="tagcloud">'</span>;
</span><span id="70" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#70"> 70 </a> wp_tag_cloud( apply_filters(<span class="php-quote">'woocommerce_product_tag_cloud_widget_args'</span>, <span class="php-keyword1">array</span>(<span class="php-quote">'taxonomy'</span> => <span class="php-var">$current_taxonomy</span>) ) );
</span><span id="71" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#71"> 71 </a> <span class="php-keyword1">echo</span> <span class="php-quote">"</div>\n"</span>;
</span><span id="72" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#72"> 72 </a> <span class="php-keyword1">echo</span> <span class="php-var">$after_widget</span>;
</span><span id="73" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#73"> 73 </a> }
</span><span id="74" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#74"> 74 </a>
</span><span id="75" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#75"> 75 </a> <span class="php-comment">/**
</span></span><span id="76" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#76"> 76 </a><span class="php-comment"> * update function.
</span></span><span id="77" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#77"> 77 </a><span class="php-comment"> *
</span></span><span id="78" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#78"> 78 </a><span class="php-comment"> * @see WP_Widget->update
</span></span><span id="79" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#79"> 79 </a><span class="php-comment"> * @access public
</span></span><span id="80" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#80"> 80 </a><span class="php-comment"> * @param array $new_instance
</span></span><span id="81" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#81"> 81 </a><span class="php-comment"> * @param array $old_instance
</span></span><span id="82" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#82"> 82 </a><span class="php-comment"> * @return array
</span></span><span id="83" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#83"> 83 </a><span class="php-comment"> */</span>
</span><span id="84" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#84"> 84 </a> <span class="php-keyword1">function</span> <a id="_update" href="source-class-WC_Widget_Product_Tag_Cloud.html#_update">update</a>( <span class="php-var">$new_instance</span>, <span class="php-var">$old_instance</span> ) {
</span><span id="85" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#85"> 85 </a> <span class="php-var">$instance</span>[<span class="php-quote">'title'</span>] = <span class="php-keyword1">isset</span>( <span class="php-var">$new_instance</span>[<span class="php-quote">'title'</span>] ) ? <span class="php-keyword2">strip_tags</span>( <span class="php-keyword2">stripslashes</span>( <span class="php-var">$new_instance</span>[<span class="php-quote">'title'</span>] ) ) : <span class="php-quote">''</span>;
</span><span id="86" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#86"> 86 </a> <span class="php-var">$instance</span>[<span class="php-quote">'taxonomy'</span>] = <span class="php-keyword1">isset</span>( <span class="php-var">$new_instance</span>[<span class="php-quote">'taxonomy'</span>] ) ? <span class="php-keyword2">stripslashes</span>( <span class="php-var">$new_instance</span>[<span class="php-quote">'taxonomy'</span>] ) : <span class="php-quote">''</span>;
</span><span id="87" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#87"> 87 </a> <span class="php-keyword1">return</span> <span class="php-var">$instance</span>;
</span><span id="88" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#88"> 88 </a> }
</span><span id="89" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#89"> 89 </a>
</span><span id="90" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#90"> 90 </a> <span class="php-comment">/**
</span></span><span id="91" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#91"> 91 </a><span class="php-comment"> * form function.
</span></span><span id="92" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#92"> 92 </a><span class="php-comment"> *
</span></span><span id="93" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#93"> 93 </a><span class="php-comment"> * @see WP_Widget->form
</span></span><span id="94" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#94"> 94 </a><span class="php-comment"> * @access public
</span></span><span id="95" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#95"> 95 </a><span class="php-comment"> * @param array $instance
</span></span><span id="96" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#96"> 96 </a><span class="php-comment"> * @return void
</span></span><span id="97" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#97"> 97 </a><span class="php-comment"> */</span>
</span><span id="98" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#98"> 98 </a> <span class="php-keyword1">function</span> <a id="_form" href="source-class-WC_Widget_Product_Tag_Cloud.html#_form">form</a>( <span class="php-var">$instance</span> ) {
</span><span id="99" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#99"> 99 </a> <span class="php-var">$current_taxonomy</span> = <span class="php-var">$this</span>->_get_current_taxonomy(<span class="php-var">$instance</span>);
</span><span id="100" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#100">100 </a><span class="xlang">?></span>
</span><span id="101" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#101">101 </a> <p><label <span class="php-keyword1">for</span>=<span class="php-quote">"<?php echo </span><span class="php-var">$this</span><span class="php-quote">->get_field_id('title'); ?>"</span>><span class="xlang"><?php</span> _e( <span class="php-quote">'Title:'</span>, <span class="php-quote">'woocommerce'</span> ) <span class="xlang">?></span></label>
</span><span id="102" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#102">102 </a> <input type=<span class="php-quote">"text"</span> <span class="php-keyword1">class</span>=<span class="php-quote">"widefat"</span> id=<span class="php-quote">"<?php echo esc_attr( </span><span class="php-var">$this</span><span class="php-quote">->get_field_id('title') ); ?>"</span> name=<span class="php-quote">"<?php echo esc_attr( </span><span class="php-var">$this</span><span class="php-quote">->get_field_name('title') ); ?>"</span> value=<span class="php-quote">"<?php if (isset ( </span><span class="php-var">$instance</span><span class="php-quote">['title'])) {echo esc_attr( </span><span class="php-var">$instance</span><span class="php-quote">['title'] );} ?>"</span> /></p>
</span><span id="103" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#103">103 </a> <span class="xlang"><?php</span>
</span><span id="104" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#104">104 </a> }
</span><span id="105" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#105">105 </a>
</span><span id="106" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#106">106 </a> <span class="php-keyword1">function</span> <a id="__get_current_taxonomy" href="source-class-WC_Widget_Product_Tag_Cloud.html#__get_current_taxonomy">_get_current_taxonomy</a>(<span class="php-var">$instance</span>) {
</span><span id="107" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#107">107 </a> <span class="php-keyword1">return</span> <span class="php-quote">'product_tag'</span>;
</span><span id="108" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#108">108 </a> }
</span><span id="109" class="l"><a class="l" href="source-class-WC_Widget_Product_Tag_Cloud.html#109">109 </a></span>}</code></pre>
</div>
<div id="footer">
WooCommerce API documentation generated by <a href="http://apigen.org">ApiGen 2.8.0</a>
</div>
</div>
</body>
</html>
|
_includes/header.html | a805429509/a805429509.github.io | <header class="navbar navbar-inverse navbar-fixed-top docs-nav" role="banner">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".bs-navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<nav class="collapse navbar-collapse bs-navbar-collapse" role="navigation">
<ul class="nav navbar-nav">
<li>
<a href="{{ '/' | prepend: site.baseurl }}">主页</a>
</li>
<li>
<a href="{{ '/categories/' | prepend: site.baseurl }}">大类分解</a>
</li>
<li>
<a href="{{ '/tag' | prepend: site.baseurl }}">小类内聚</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a><span id="busuanzi_container_site_pv">本站总访问量<span id="busuanzi_value_site_pv"></span>次</span></a>
</li>
<li>
<a href="{{ '/donate/' | prepend: site.baseurl }}"><strong>打赏</strong></a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">关于<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a rel="nofollow" target="_blank" href="{{site.github}}">博主的github</a></li>
<li><a rel="nofollow" target="_blank" href="{{site.resume_site}}">关于主题作者</a></li>
<li><a rel="nofollow" href="{{ '/books' | prepend: site.baseurl }}">我的书单</a></li>
<li><a rel="nofollow" href="{{ '/reference' | prepend: site.baseurl }}">推荐博客</a></li>
<li class="divider"></li>
<li><a rel="nofollow" target="_blank" href="https://github.com/a805429509/a805429509.github.io.git">本项目</a></li>
</ul>
</li>
</ul>
</nav>
</div>
</header> |
html/signup.html | rhvdbergh/dax | <!DOCTYPE html>
<html>
<head>
<title>VocabSpace - Sign up</title>
<link href="https://fonts.googleapis.com/css?family=GFS+Didot|GFS+Neohellenic|Open+Sans|Baloo+Bhaijaan" rel="stylesheet">
<link rel="stylesheet" href="../css/style.css">
<meta charset="utf-8">
</head>
<body>
<div class="container">
<div>
<ul class="navbar">
<li class="home"><a href="../index.html">Home</a></li>
<div class="navbar-right">
</div>
</ul>
</div>
<form method="POST">
<div class="signup_page_container">
<input type='email' id="signup_email" placeholder='Email' name='newuname' required>
<input type='email' id="signup_email_val" placeholder='Confirm email' name='newuname_validation' required>
<input type='password' id="signup_psw" placeholder='Password' name='newpsw' required>
<input type='password' id="signup_psw_val" placeholder='Confirm password' name='newpsw_validation' required>
<button type='submit' class='signup_btn' name='signup_btn' value='signup_btn'>Sign me up!</button>
</div>
</form>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="../js/signup.js"></script>
</body>
</html> |
src/polyfill.css | chemerisuk/better-dateinput-polyfill | @keyframes dateinput-polyfill {
from {opacity: .99};
to {opacity: 1};
}
input[type="date"] {
/* we need this fake animation to init polyfill */
animation: dateinput-polyfill 1ms !important;
}
:root {
--calendar-day-size: 45px;
}
dateinput-picker {
background: #fff;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
height: calc(var(--calendar-day-size) * 8);
position: absolute;
width: calc(var(--calendar-day-size) * 7);
z-index: 2147483647;
&[aria-hidden=true] {
visibility: hidden;
}
}
|
app/js/auto/auto.html | towersxu/learn-angularjs | <!DOCTYPE html>
<html lang="en" ng-app="myApp">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<div ng-view></div>
<script src="../../bower_components/angular/angular.js"></script>
<script src="../../bower_components/angular-route/angular-route.js"></script>
<script src="../../bower_components/angular-cookies/angular-cookies.js"></script>
<script src="./auto.js"></script>
</body>
</html> |
1a894b3/html/namespacemembers.html | v8-dox/v8-dox.github.io | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>V8 API Reference Guide for node.js v0.3.3: Namespace Members</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v0.3.3
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li class="current"><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="namespaces.html"><span>Namespace List</span></a></li>
<li class="current"><a href="namespacemembers.html"><span>Namespace Members</span></a></li>
</ul>
</div>
<div id="navrow3" class="tabs2">
<ul class="tablist">
<li class="current"><a href="namespacemembers.html"><span>All</span></a></li>
<li><a href="namespacemembers_func.html"><span>Functions</span></a></li>
<li><a href="namespacemembers_type.html"><span>Typedefs</span></a></li>
<li><a href="namespacemembers_enum.html"><span>Enumerations</span></a></li>
</ul>
</div>
</div><!-- top -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
<div class="textblock">Here is a list of all documented namespace members with links to the namespaces they belong to:</div><ul>
<li>AccessControl
: <a class="el" href="namespacev8.html#a31d8355cb043d7d2dda3f4a52760b64e">v8</a>
</li>
<li>AccessorGetter
: <a class="el" href="namespacev8.html#a3016fe071826349d1370a700e71be094">v8</a>
</li>
<li>AccessType
: <a class="el" href="namespacev8.html#add8bef6469c5b94706584124e610046c">v8</a>
</li>
<li>GCType
: <a class="el" href="namespacev8.html#ac109d6f27e0c0f9ef4e98bcf7a806cf2">v8</a>
</li>
<li>IndexedPropertyDeleter
: <a class="el" href="namespacev8.html#a3a7c18d62a0d1f2d12845051920be592">v8</a>
</li>
<li>IndexedPropertyEnumerator
: <a class="el" href="namespacev8.html#a15ab299eff53946ab483b762a4cb20dc">v8</a>
</li>
<li>IndexedPropertyGetter
: <a class="el" href="namespacev8.html#abf3be19b5157493da3859987cc50c6ab">v8</a>
</li>
<li>IndexedPropertyQuery
: <a class="el" href="namespacev8.html#ac84ffd0beb05009f30378ef45a065edf">v8</a>
</li>
<li>IndexedPropertySetter
: <a class="el" href="namespacev8.html#a3ca53e294b9b695b3777af904ca942b6">v8</a>
</li>
<li>IndexedSecurityCallback
: <a class="el" href="namespacev8.html#aebbcc7837753e51112d944ad96520da1">v8</a>
</li>
<li>NamedPropertyDeleter
: <a class="el" href="namespacev8.html#a7899471fae82b252750b81f41d5c1e26">v8</a>
</li>
<li>NamedPropertyEnumerator
: <a class="el" href="namespacev8.html#acbd04b83708cb5a80e73e0396f176e58">v8</a>
</li>
<li>NamedPropertyGetter
: <a class="el" href="namespacev8.html#ab9effde41da1c073eddbd4a11a62bd0b">v8</a>
</li>
<li>NamedPropertyQuery
: <a class="el" href="namespacev8.html#a0136e8102c101d9a39497f75daa9153b">v8</a>
</li>
<li>NamedPropertySetter
: <a class="el" href="namespacev8.html#a682b1fc46feab32605c4905612ffe870">v8</a>
</li>
<li>NamedSecurityCallback
: <a class="el" href="namespacev8.html#ab5cafda0c556bba990c660ce9c904e0d">v8</a>
</li>
<li>ProfilerModules
: <a class="el" href="namespacev8.html#af7db93f0cafe64397fd7fdd1bccae9e5">v8</a>
</li>
<li>ThrowException()
: <a class="el" href="namespacev8.html#a2469af0ac719d39f77f20cf68dd9200e">v8</a>
</li>
<li>WeakReferenceCallback
: <a class="el" href="namespacev8.html#a4d5db775dbc002b23f1b55ec7ce80ea5">v8</a>
</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Aug 11 2015 23:46:45 for V8 API Reference Guide for node.js v0.3.3 by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.9.1
</small></address>
</body>
</html>
|
swag.html | idmtr/dlirium | <!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Dlirium Brand - Made Here Not There</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
<meta name="description" content="Hand-made skate footwear.">
<meta name="keywords" content="skate, sneakers, shoes, street, footwear, handmade">
<link rel="shortcut icon" href="img/logo.ico" type="image/ico"/>
<!-- CSS -->
<!-- <link rel="stylesheet" href="HTTP://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"> -->
<!-- <link rel="stylesheet" href="css/et-line.css"> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/remodal/1.0.6/remodal.css">
<link rel="stylesheet" href="./css/skeleton.css">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/lightbox.css">
<!-- Fonts -->
<link href="http://fonts.googleapis.com/css?family=Montserrat:400,700,300" rel='stylesheet' type='text/css'>
<link href="http://fonts.googleapis.com/css?family=Lato:600,700,400,300" rel='stylesheet' type='text/css'>
<!-- Js -->
<script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/remodal/1.0.6/remodal.js"></script>
<!-- Facebook -->
<meta property="fb:admins" content="614065150" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://dliriumbrand.com/" />
<meta property="og:title" content="Dlirium Sneakers - Made Here, Not There." />
<meta property="og:description" content="Dlirium sneakers have the philosophy of "Made Here, Not There", a hand-crafted product with passion and supreme materials." />
<meta property="og:image" content="http://i.imgur.com/KMx1rcc.jpg" />
<!-- Twitter Card data -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@dliriumbrand">
<meta name="twitter:creator" content="@idmtr">
<meta name="twitter:title" content="Made Here, Not There!">
<meta name="twitter:description" content="Indie sneakers brand.">
<meta name="twitter:image" content="http://i.imgur.com/KMx1rcc.jpg">
<!--Start of Zopim Live Chat Script-->
<script type="text/javascript">
window.$zopim||(function(d,s){var z=$zopim=function(c){z._.push(c)},$=z.s=
d.createElement(s),e=d.getElementsByTagName(s)[0];z.set=function(o){z.set.
_.push(o)};z._=[];z.set._=[];$.async=!0;$.setAttribute("charset","utf-8");
$.src="//v2.zopim.com/?2zf6dSGumELW61iv5RGHqHhxFcV0RNxC";z.t=+new Date;$.
type="text/javascript";e.parentNode.insertBefore($,e)})(document,"script");
</script>
<!--End of Zopim Live Chat Script-->
<meta name="google-site-verification" content="zggMuZDolmXxT5J7dEtpylKlCCOLGV_H25Aw_JiZpos" />
</head>
<body>
<div class="header section section-xl bg-style01">
<div class="container">
<div class="row above-overlay">
<div class="twelve columns">
<!--<h2 class="h-style1 big-title">Dilirium</h2> -->
<a href="http://dliriumbrand.com/newpage"><img src="http://i.imgur.com/xUawYAe.png" class="logo" /></a>
<h3 class="h-style2 small-title">made here, not there</h3>
<div class="t-center">
<a class="button button-style1" href="./model001.html"> Всички от Модел 001</a>
<a class="button margin-l-small button-style1" href="./epik.html"> Виж EPIK</a>
</div>
</div>
</div>
</div>
</div>
<div class="section section-xl ">
<div class="container">
<div class="row calc-p-bottom">
<div class="twelve columns">
<h2 class="h-style3 section-h"> <img src="https://abs.twimg.com/emoji/v2/72x72/1f468.png"> </h2>
</div>
</div>
<div class="row">
<div class="six columns t-center ">
<a href="./CrewTeeWhite.html"><img src="http://i.imgur.com/hzwPyno.png" class="u-max-full-width" /></a>
</div>
<div class="six columns t-center ">
<img src="http://i.imgur.com/if0sZ1X.png" class="u-max-full-width" />
</div>
</div>
<div class="row">
<div class="six columns t-center ">
<a href="./icecream.html"><img src="http://i.imgur.com/mFbHtQO.png" class="u-max-full-width" /></a>
</div>
<div class="six columns t-center ">
<a href="./CrewTeeBlack.html" ><img src="http://i.imgur.com/Co9vUl5.png" class="u-max-full-width" /></a>
</div>
</div>
</div>
</div>
<!-- FOOTER -->
<div class="header section section-xl bg-style001" style="background-color: #110271;">
<div class="container">
<div class="row above-overlay">
<div class="twelve columns">
<center style="color: white;">
<p class="sub_tite1">
<p style="color: white;">За повече информация <a href="http://facebook.com/dliriumbrand">
<div id="widget" style="display: inline-block; overflow: hidden; text-align: left; white-space: nowrap;">
<a target="_blank" href="http://m.me/dliriumbrand" style="min-width: 90px;border-radius: 6px;-webkit-border-radius: 6px;-moz-border-radius: 6px;border: 1px solid #d5d5d5;padding: 6px 6px 6px 0;text-decoration: none; text-shadow: none;margin: 0;display: block;color: #575757;line-height: 24px;font-size: 14px;font-weight: normal;padding-left: 36px; background: url('https://assets.modernapp.co/assets/images/facebook-message-button-icon2x.png') no-repeat 5px 6px;background-color: #fff !important; background-size: 23px 23px;">Пиши ни!</a>
</div>
<script async defer src="https://assets.modernapp.co/assets/js/embed.js"></script></a>
</p>
</p>
</center>
</div>
</div>
</div>
</div>
<div class="section section-xxxl bg-style4">
<div class="container">
<div class="row">
<div class="four columns">
<a href="http://blog.dliriumbrand.com" class="h-style2"><h3><b>БЛОГ</b></h3></a>
</div>
<div class="four columns">
<a href="http://facebook.com/dliriumbrand" class="h-style2"><h3><b>FACEBOOK</b></h3></a>
</div>
<div class="four columns">
<a href="http://Instagram.com/dliriumbrand" class="h-style2"><h3><b>INSTAGRAM</b></h3></a>
</div>
</div>
</div>
</div>
<div class="section section-s t-center footer" style="background-color:#ff4a23;color:white;">
<p>© 2016 <a target="_blank" href="https://twitter.com/search?f=tweets&q=%23dliriumbrand&src=typd">#DliriumBrand</a></p>
<p> <a href="./about.html" ><b>ЗА НАС</b></a> | <a href="./contact.html"><b>КОНТАКТ</b></a> | <a href="./eng.html"><b>ENGLISH</b></a></p>
</div>
<script src="https://cdn.rawgit.com/idmtr/dlirium/master/js/vendor/lightbox.js"></script>
<script>
// accordion behavior
$(document).ready(function($) {
$('.accordion-head').click(function(){
$heading = $(this);
$text = $(this).next();
$text.stop(true,true).slideToggle(250,function(){
$heading.toggleClass('collapsed');
});
$(".accordion-body").not($text).slideUp('fast',function(){
$(this).prev().addClass('collapsed');
});
});
});
</script>
</body>
</html> |
app/desktop/tpl/service/notice/edit.html | forwardNow/pkui | <form class="da-form"
action="{% service.notice.add.sysNoticeSave %}" method="post"
data-pkui-component="validator|form"
data-done-callback="editSysNoticeDoneCallback"
data-fail-callback="editSysNoticeFailCallback" >
<input type="hidden" name="opid" value="{{opid}}">
<div class="da-form-heading">修改公告</div>
<div class="da-form-body">
<table class="da-form-table da-table da-table-striped">
<colgroup>
<col width="10%">
<col width="90%">
</colgroup>
<tr>
<td class="text-right"><label class="da-control-label required">标题:</label></td>
<td><input type="text" class="da-form-control" name="subject" value="{{subject}}"
data-rule='“标题”: required'></td>
</tr>
<tr>
<td class="text-right"><label class="da-control-label required">单位:</label></td>
<input type="hidden" name="deptname" value="{{deptname}}">
<td><select name="deptid"
data-pkui-component="chosen"
data-pkui-component-options='{
"dic":"DIC_DEPT",
"defaultCode": "{{deptid}}",
"relateInputName": "deptname"
}'
data-rule="“单位”: required"
></select></td>
</tr>
<tr>
<td class="text-right"><label class="da-control-label">发布人 <i class="fa fa-question-circle-o" title="如果不填,则为当前登陆用户。"></i>:</label></td>
<td><input type="text" class="da-form-control" name="author" value="{{author}}"></td>
</tr>
<tr>
<td class="text-right"><label class="da-control-label required">内容:</label></td>
<td><input type="hidden" name="content">
<script type="text/plain" id="sysNoticeEditor"
data-pkui-component="umeditor"
data-pkui-component-options='{
"toolbar": ["fullscreen source undo redo bold italic underline"],
"initialContent": "不推荐直接在网页编辑器中编辑文档;<br>建议先使用“Microsoft Word”编辑文档,然后将编辑好的文档内容拷贝到网页编辑器中。",
"autoClearinitialContent": false,
"autoHeightEnabled": false,
"initialFrameWidth": "100%",
"initialFrameHeight": 300
}'>{{content}}</script></td>
</tr>
</table>
</div>
<div class="da-form-footer">
<button type="submit" class="btn btn-success-2"
onclick="jQuery(this).closest('form').find('input[name=content]')[0].value=window.UM.getEditor('sysNoticeEditor').getContent()">确定</button>
</div>
</form>
<script>
// 请求发送成功,对服务器端返回的数据进行处理
function editSysNoticeDoneCallback($form, jsonResult) {
jsonResult = window.PKUI.handleJsonResult( jsonResult );
// 服务器端处理成功
if ( jsonResult.success ) {
// 提示
layer.alert( '修改成功!', { icon: 1 }, function ( index ) {
layer.close( index );
// 关闭抽屉层
//$( "#editSysNoticeBtn" ).drawer( "destroy" );
$form.closest( ".pkui-drawer" ).find( ".pkui-drawer-button" ).trigger( "click" );
} );
}
// 服务器端处理失败
else {
// 提示
layer.alert( '修改失败!', { icon: 2 } );
}
}
// 请求发送失败
function editSysNoticeFailCallback($form) {
// 提示网络错误
layer.alert( '网络错误!', { icon: 0 } );
}
</script>
|
public/css/main.css | reiniergs/CodeWar-Ranking | /* COLORS */
/* TOP BAR */
/* line 241, src/foundation/scss/foundation/components/_global.scss */
*,
*:before,
*:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
/* line 246, src/foundation/scss/foundation/components/_global.scss */
html,
body {
font-size: 100%;
}
/* line 249, src/foundation/scss/foundation/components/_global.scss */
body {
background: white;
color: #222222;
padding: 0;
margin: 0;
font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
font-weight: normal;
font-style: normal;
line-height: 1;
position: relative;
cursor: default;
}
/* line 262, src/foundation/scss/foundation/components/_global.scss */
a:hover {
cursor: pointer;
}
/* line 265, src/foundation/scss/foundation/components/_global.scss */
a:focus {
outline: none;
}
/* line 270, src/foundation/scss/foundation/components/_global.scss */
img,
object,
embed {
max-width: 100%;
height: auto;
}
/* line 273, src/foundation/scss/foundation/components/_global.scss */
object,
embed {
height: 100%;
}
/* line 274, src/foundation/scss/foundation/components/_global.scss */
img {
-ms-interpolation-mode: bicubic;
}
/* line 280, src/foundation/scss/foundation/components/_global.scss */
#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
max-width: none !important;
}
/* line 285, src/foundation/scss/foundation/components/_global.scss */
.left {
float: left !important;
}
/* line 286, src/foundation/scss/foundation/components/_global.scss */
.right {
float: right !important;
}
/* line 287, src/foundation/scss/foundation/components/_global.scss */
.text-left {
text-align: left !important;
}
/* line 288, src/foundation/scss/foundation/components/_global.scss */
.text-right {
text-align: right !important;
}
/* line 289, src/foundation/scss/foundation/components/_global.scss */
.text-center {
text-align: center !important;
}
/* line 290, src/foundation/scss/foundation/components/_global.scss */
.text-justify {
text-align: justify !important;
}
/* line 291, src/foundation/scss/foundation/components/_global.scss */
.hide {
display: none;
}
/* line 297, src/foundation/scss/foundation/components/_global.scss */
.antialiased {
-webkit-font-smoothing: antialiased;
}
/* line 300, src/foundation/scss/foundation/components/_global.scss */
img {
display: inline-block;
vertical-align: middle;
}
/* line 310, src/foundation/scss/foundation/components/_global.scss */
textarea {
height: auto;
min-height: 50px;
}
/* line 313, src/foundation/scss/foundation/components/_global.scss */
select {
width: 100%;
}
/* Grid HTML Classes */
/* line 116, src/foundation/scss/foundation/components/_grid.scss */
.row {
width: 100%;
margin-left: auto;
margin-right: auto;
margin-top: 0;
margin-bottom: 0;
max-width: 62.5em;
*zoom: 1;
}
/* line 121, src/foundation/scss/foundation/components/_global.scss */
.row:before, .row:after {
content: " ";
display: table;
}
/* line 122, src/foundation/scss/foundation/components/_global.scss */
.row:after {
clear: both;
}
/* line 121, src/foundation/scss/foundation/components/_grid.scss */
.row.collapse .column,
.row.collapse .columns {
position: relative;
padding-left: 0;
padding-right: 0;
float: left;
}
/* line 124, src/foundation/scss/foundation/components/_grid.scss */
.row .row {
width: auto;
margin-left: -0.9375em;
margin-right: -0.9375em;
margin-top: 0;
margin-bottom: 0;
max-width: none;
*zoom: 1;
}
/* line 121, src/foundation/scss/foundation/components/_global.scss */
.row .row:before, .row .row:after {
content: " ";
display: table;
}
/* line 122, src/foundation/scss/foundation/components/_global.scss */
.row .row:after {
clear: both;
}
/* line 125, src/foundation/scss/foundation/components/_grid.scss */
.row .row.collapse {
width: auto;
margin: 0;
max-width: none;
*zoom: 1;
}
/* line 121, src/foundation/scss/foundation/components/_global.scss */
.row .row.collapse:before, .row .row.collapse:after {
content: " ";
display: table;
}
/* line 122, src/foundation/scss/foundation/components/_global.scss */
.row .row.collapse:after {
clear: both;
}
/* line 130, src/foundation/scss/foundation/components/_grid.scss */
.column,
.columns {
position: relative;
padding-left: 0.9375em;
padding-right: 0.9375em;
width: 100%;
float: left;
}
@media only screen {
/* line 135, src/foundation/scss/foundation/components/_grid.scss */
.column,
.columns {
position: relative;
padding-left: 0.9375em;
padding-right: 0.9375em;
float: left;
}
/* line 138, src/foundation/scss/foundation/components/_grid.scss */
.small-1 {
position: relative;
width: 8.33333%;
}
/* line 138, src/foundation/scss/foundation/components/_grid.scss */
.small-2 {
position: relative;
width: 16.66667%;
}
/* line 138, src/foundation/scss/foundation/components/_grid.scss */
.small-3 {
position: relative;
width: 25%;
}
/* line 138, src/foundation/scss/foundation/components/_grid.scss */
.small-4 {
position: relative;
width: 33.33333%;
}
/* line 138, src/foundation/scss/foundation/components/_grid.scss */
.small-5 {
position: relative;
width: 41.66667%;
}
/* line 138, src/foundation/scss/foundation/components/_grid.scss */
.small-6 {
position: relative;
width: 50%;
}
/* line 138, src/foundation/scss/foundation/components/_grid.scss */
.small-7 {
position: relative;
width: 58.33333%;
}
/* line 138, src/foundation/scss/foundation/components/_grid.scss */
.small-8 {
position: relative;
width: 66.66667%;
}
/* line 138, src/foundation/scss/foundation/components/_grid.scss */
.small-9 {
position: relative;
width: 75%;
}
/* line 138, src/foundation/scss/foundation/components/_grid.scss */
.small-10 {
position: relative;
width: 83.33333%;
}
/* line 138, src/foundation/scss/foundation/components/_grid.scss */
.small-11 {
position: relative;
width: 91.66667%;
}
/* line 138, src/foundation/scss/foundation/components/_grid.scss */
.small-12 {
position: relative;
width: 100%;
}
/* line 142, src/foundation/scss/foundation/components/_grid.scss */
.small-offset-0 {
position: relative;
margin-left: 0%;
}
/* line 142, src/foundation/scss/foundation/components/_grid.scss */
.small-offset-1 {
position: relative;
margin-left: 8.33333%;
}
/* line 142, src/foundation/scss/foundation/components/_grid.scss */
.small-offset-2 {
position: relative;
margin-left: 16.66667%;
}
/* line 142, src/foundation/scss/foundation/components/_grid.scss */
.small-offset-3 {
position: relative;
margin-left: 25%;
}
/* line 142, src/foundation/scss/foundation/components/_grid.scss */
.small-offset-4 {
position: relative;
margin-left: 33.33333%;
}
/* line 142, src/foundation/scss/foundation/components/_grid.scss */
.small-offset-5 {
position: relative;
margin-left: 41.66667%;
}
/* line 142, src/foundation/scss/foundation/components/_grid.scss */
.small-offset-6 {
position: relative;
margin-left: 50%;
}
/* line 142, src/foundation/scss/foundation/components/_grid.scss */
.small-offset-7 {
position: relative;
margin-left: 58.33333%;
}
/* line 142, src/foundation/scss/foundation/components/_grid.scss */
.small-offset-8 {
position: relative;
margin-left: 66.66667%;
}
/* line 142, src/foundation/scss/foundation/components/_grid.scss */
.small-offset-9 {
position: relative;
margin-left: 75%;
}
/* line 142, src/foundation/scss/foundation/components/_grid.scss */
.small-offset-10 {
position: relative;
margin-left: 83.33333%;
}
/* line 145, src/foundation/scss/foundation/components/_grid.scss */
[class*="column"] + [class*="column"]:last-child {
float: right;
}
/* line 146, src/foundation/scss/foundation/components/_grid.scss */
[class*="column"] + [class*="column"].end {
float: left;
}
/* line 149, src/foundation/scss/foundation/components/_grid.scss */
.column.small-centered,
.columns.small-centered {
position: relative;
margin-left: auto;
margin-right: auto;
float: none !important;
}
}
/* Styles for screens that are atleast 768px; */
@media only screen and (min-width: 768px) {
/* line 156, src/foundation/scss/foundation/components/_grid.scss */
.large-1 {
position: relative;
width: 8.33333%;
}
/* line 156, src/foundation/scss/foundation/components/_grid.scss */
.large-2 {
position: relative;
width: 16.66667%;
}
/* line 156, src/foundation/scss/foundation/components/_grid.scss */
.large-3 {
position: relative;
width: 25%;
}
/* line 156, src/foundation/scss/foundation/components/_grid.scss */
.large-4 {
position: relative;
width: 33.33333%;
}
/* line 156, src/foundation/scss/foundation/components/_grid.scss */
.large-5 {
position: relative;
width: 41.66667%;
}
/* line 156, src/foundation/scss/foundation/components/_grid.scss */
.large-6 {
position: relative;
width: 50%;
}
/* line 156, src/foundation/scss/foundation/components/_grid.scss */
.large-7 {
position: relative;
width: 58.33333%;
}
/* line 156, src/foundation/scss/foundation/components/_grid.scss */
.large-8 {
position: relative;
width: 66.66667%;
}
/* line 156, src/foundation/scss/foundation/components/_grid.scss */
.large-9 {
position: relative;
width: 75%;
}
/* line 156, src/foundation/scss/foundation/components/_grid.scss */
.large-10 {
position: relative;
width: 83.33333%;
}
/* line 156, src/foundation/scss/foundation/components/_grid.scss */
.large-11 {
position: relative;
width: 91.66667%;
}
/* line 156, src/foundation/scss/foundation/components/_grid.scss */
.large-12 {
position: relative;
width: 100%;
}
/* line 160, src/foundation/scss/foundation/components/_grid.scss */
.row .large-offset-0 {
position: relative;
margin-left: 0%;
}
/* line 160, src/foundation/scss/foundation/components/_grid.scss */
.row .large-offset-1 {
position: relative;
margin-left: 8.33333%;
}
/* line 160, src/foundation/scss/foundation/components/_grid.scss */
.row .large-offset-2 {
position: relative;
margin-left: 16.66667%;
}
/* line 160, src/foundation/scss/foundation/components/_grid.scss */
.row .large-offset-3 {
position: relative;
margin-left: 25%;
}
/* line 160, src/foundation/scss/foundation/components/_grid.scss */
.row .large-offset-4 {
position: relative;
margin-left: 33.33333%;
}
/* line 160, src/foundation/scss/foundation/components/_grid.scss */
.row .large-offset-5 {
position: relative;
margin-left: 41.66667%;
}
/* line 160, src/foundation/scss/foundation/components/_grid.scss */
.row .large-offset-6 {
position: relative;
margin-left: 50%;
}
/* line 160, src/foundation/scss/foundation/components/_grid.scss */
.row .large-offset-7 {
position: relative;
margin-left: 58.33333%;
}
/* line 160, src/foundation/scss/foundation/components/_grid.scss */
.row .large-offset-8 {
position: relative;
margin-left: 66.66667%;
}
/* line 160, src/foundation/scss/foundation/components/_grid.scss */
.row .large-offset-9 {
position: relative;
margin-left: 75%;
}
/* line 160, src/foundation/scss/foundation/components/_grid.scss */
.row .large-offset-10 {
position: relative;
margin-left: 83.33333%;
}
/* line 160, src/foundation/scss/foundation/components/_grid.scss */
.row .large-offset-11 {
position: relative;
margin-left: 91.66667%;
}
/* line 164, src/foundation/scss/foundation/components/_grid.scss */
.push-1 {
position: relative;
left: 8.33333%;
right: auto;
}
/* line 165, src/foundation/scss/foundation/components/_grid.scss */
.pull-1 {
position: relative;
right: 8.33333%;
left: auto;
}
/* line 164, src/foundation/scss/foundation/components/_grid.scss */
.push-2 {
position: relative;
left: 16.66667%;
right: auto;
}
/* line 165, src/foundation/scss/foundation/components/_grid.scss */
.pull-2 {
position: relative;
right: 16.66667%;
left: auto;
}
/* line 164, src/foundation/scss/foundation/components/_grid.scss */
.push-3 {
position: relative;
left: 25%;
right: auto;
}
/* line 165, src/foundation/scss/foundation/components/_grid.scss */
.pull-3 {
position: relative;
right: 25%;
left: auto;
}
/* line 164, src/foundation/scss/foundation/components/_grid.scss */
.push-4 {
position: relative;
left: 33.33333%;
right: auto;
}
/* line 165, src/foundation/scss/foundation/components/_grid.scss */
.pull-4 {
position: relative;
right: 33.33333%;
left: auto;
}
/* line 164, src/foundation/scss/foundation/components/_grid.scss */
.push-5 {
position: relative;
left: 41.66667%;
right: auto;
}
/* line 165, src/foundation/scss/foundation/components/_grid.scss */
.pull-5 {
position: relative;
right: 41.66667%;
left: auto;
}
/* line 164, src/foundation/scss/foundation/components/_grid.scss */
.push-6 {
position: relative;
left: 50%;
right: auto;
}
/* line 165, src/foundation/scss/foundation/components/_grid.scss */
.pull-6 {
position: relative;
right: 50%;
left: auto;
}
/* line 164, src/foundation/scss/foundation/components/_grid.scss */
.push-7 {
position: relative;
left: 58.33333%;
right: auto;
}
/* line 165, src/foundation/scss/foundation/components/_grid.scss */
.pull-7 {
position: relative;
right: 58.33333%;
left: auto;
}
/* line 164, src/foundation/scss/foundation/components/_grid.scss */
.push-8 {
position: relative;
left: 66.66667%;
right: auto;
}
/* line 165, src/foundation/scss/foundation/components/_grid.scss */
.pull-8 {
position: relative;
right: 66.66667%;
left: auto;
}
/* line 164, src/foundation/scss/foundation/components/_grid.scss */
.push-9 {
position: relative;
left: 75%;
right: auto;
}
/* line 165, src/foundation/scss/foundation/components/_grid.scss */
.pull-9 {
position: relative;
right: 75%;
left: auto;
}
/* line 164, src/foundation/scss/foundation/components/_grid.scss */
.push-10 {
position: relative;
left: 83.33333%;
right: auto;
}
/* line 165, src/foundation/scss/foundation/components/_grid.scss */
.pull-10 {
position: relative;
right: 83.33333%;
left: auto;
}
/* line 164, src/foundation/scss/foundation/components/_grid.scss */
.push-11 {
position: relative;
left: 91.66667%;
right: auto;
}
/* line 165, src/foundation/scss/foundation/components/_grid.scss */
.pull-11 {
position: relative;
right: 91.66667%;
left: auto;
}
/* line 169, src/foundation/scss/foundation/components/_grid.scss */
.column.large-centered,
.columns.large-centered {
position: relative;
margin-left: auto;
margin-right: auto;
float: none !important;
}
/* line 172, src/foundation/scss/foundation/components/_grid.scss */
.column.large-uncentered,
.columns.large-uncentered {
margin-left: 0;
margin-right: 0;
float: left !important;
}
/* line 179, src/foundation/scss/foundation/components/_grid.scss */
.column.large-uncentered.opposite,
.columns.large-uncentered.opposite {
float: right !important;
}
}
/* Foundation Visibility HTML Classes */
/* line 11, src/foundation/scss/foundation/components/_visibility.scss */
.show-for-small,
.show-for-medium-down,
.show-for-large-down {
display: inherit !important;
}
/* line 17, src/foundation/scss/foundation/components/_visibility.scss */
.show-for-medium,
.show-for-medium-up,
.show-for-large,
.show-for-large-up,
.show-for-xlarge {
display: none !important;
}
/* line 23, src/foundation/scss/foundation/components/_visibility.scss */
.hide-for-medium,
.hide-for-medium-up,
.hide-for-large,
.hide-for-large-up,
.hide-for-xlarge {
display: inherit !important;
}
/* line 27, src/foundation/scss/foundation/components/_visibility.scss */
.hide-for-small,
.hide-for-medium-down,
.hide-for-large-down {
display: none !important;
}
/* Specific visilbity for tables */
/* line 38, src/foundation/scss/foundation/components/_visibility.scss */
table.show-for-small, table.show-for-medium-down, table.show-for-large-down, table.hide-for-medium, table.hide-for-medium-up, table.hide-for-large, table.hide-for-large-up, table.hide-for-xlarge {
display: table;
}
/* line 48, src/foundation/scss/foundation/components/_visibility.scss */
thead.show-for-small, thead.show-for-medium-down, thead.show-for-large-down, thead.hide-for-medium, thead.hide-for-medium-up, thead.hide-for-large, thead.hide-for-large-up, thead.hide-for-xlarge {
display: table-header-group !important;
}
/* line 58, src/foundation/scss/foundation/components/_visibility.scss */
tbody.show-for-small, tbody.show-for-medium-down, tbody.show-for-large-down, tbody.hide-for-medium, tbody.hide-for-medium-up, tbody.hide-for-large, tbody.hide-for-large-up, tbody.hide-for-xlarge {
display: table-row-group !important;
}
/* line 68, src/foundation/scss/foundation/components/_visibility.scss */
tr.show-for-small, tr.show-for-medium-down, tr.show-for-large-down, tr.hide-for-medium, tr.hide-for-medium-up, tr.hide-for-large, tr.hide-for-large-up, tr.hide-for-xlarge {
display: table-row !important;
}
/* line 79, src/foundation/scss/foundation/components/_visibility.scss */
td.show-for-small, td.show-for-medium-down, td.show-for-large-down, td.hide-for-medium, td.hide-for-medium-up, td.hide-for-large, td.hide-for-large-up, td.hide-for-xlarge,
th.show-for-small,
th.show-for-medium-down,
th.show-for-large-down,
th.hide-for-medium,
th.hide-for-medium-up,
th.hide-for-large,
th.hide-for-large-up,
th.hide-for-xlarge {
display: table-cell !important;
}
/* Medium Displays: 768px - 1279px */
@media only screen and (min-width: 768px) {
/* line 85, src/foundation/scss/foundation/components/_visibility.scss */
.show-for-medium,
.show-for-medium-up {
display: inherit !important;
}
/* line 87, src/foundation/scss/foundation/components/_visibility.scss */
.show-for-small {
display: none !important;
}
/* line 89, src/foundation/scss/foundation/components/_visibility.scss */
.hide-for-small {
display: inherit !important;
}
/* line 92, src/foundation/scss/foundation/components/_visibility.scss */
.hide-for-medium,
.hide-for-medium-up {
display: none !important;
}
/* Specific visilbity for tables */
/* line 98, src/foundation/scss/foundation/components/_visibility.scss */
table.show-for-medium, table.show-for-medium-up, table.hide-for-small {
display: table;
}
/* line 103, src/foundation/scss/foundation/components/_visibility.scss */
thead.show-for-medium, thead.show-for-medium-up, thead.hide-for-small {
display: table-header-group !important;
}
/* line 108, src/foundation/scss/foundation/components/_visibility.scss */
tbody.show-for-medium, tbody.show-for-medium-up, tbody.hide-for-small {
display: table-row-group !important;
}
/* line 113, src/foundation/scss/foundation/components/_visibility.scss */
tr.show-for-medium, tr.show-for-medium-up, tr.hide-for-small {
display: table-row !important;
}
/* line 119, src/foundation/scss/foundation/components/_visibility.scss */
td.show-for-medium, td.show-for-medium-up, td.hide-for-small,
th.show-for-medium,
th.show-for-medium-up,
th.hide-for-small {
display: table-cell !important;
}
}
/* Large Displays: 1280px - 1440px */
@media only screen and (min-width: 1280px) {
/* line 126, src/foundation/scss/foundation/components/_visibility.scss */
.show-for-large,
.show-for-large-up {
display: inherit !important;
}
/* line 129, src/foundation/scss/foundation/components/_visibility.scss */
.show-for-medium,
.show-for-medium-down {
display: none !important;
}
/* line 132, src/foundation/scss/foundation/components/_visibility.scss */
.hide-for-medium,
.hide-for-medium-down {
display: inherit !important;
}
/* line 135, src/foundation/scss/foundation/components/_visibility.scss */
.hide-for-large,
.hide-for-large-up {
display: none !important;
}
/* Specific visilbity for tables */
/* line 142, src/foundation/scss/foundation/components/_visibility.scss */
table.show-for-large, table.show-for-large-up, table.hide-for-medium, table.hide-for-medium-down {
display: table;
}
/* line 148, src/foundation/scss/foundation/components/_visibility.scss */
thead.show-for-large, thead.show-for-large-up, thead.hide-for-medium, thead.hide-for-medium-down {
display: table-header-group !important;
}
/* line 154, src/foundation/scss/foundation/components/_visibility.scss */
tbody.show-for-large, tbody.show-for-large-up, tbody.hide-for-medium, tbody.hide-for-medium-down {
display: table-row-group !important;
}
/* line 160, src/foundation/scss/foundation/components/_visibility.scss */
tr.show-for-large, tr.show-for-large-up, tr.hide-for-medium, tr.hide-for-medium-down {
display: table-row !important;
}
/* line 167, src/foundation/scss/foundation/components/_visibility.scss */
td.show-for-large, td.show-for-large-up, td.hide-for-medium, td.hide-for-medium-down,
th.show-for-large,
th.show-for-large-up,
th.hide-for-medium,
th.hide-for-medium-down {
display: table-cell !important;
}
}
/* X-Large Displays: 1400px and up */
@media only screen and (min-width: 1440px) {
/* line 173, src/foundation/scss/foundation/components/_visibility.scss */
.show-for-xlarge {
display: inherit !important;
}
/* line 176, src/foundation/scss/foundation/components/_visibility.scss */
.show-for-large,
.show-for-large-down {
display: none !important;
}
/* line 179, src/foundation/scss/foundation/components/_visibility.scss */
.hide-for-large,
.hide-for-large-down {
display: inherit !important;
}
/* line 181, src/foundation/scss/foundation/components/_visibility.scss */
.hide-for-xlarge {
display: none !important;
}
/* Specific visilbity for tables */
/* line 187, src/foundation/scss/foundation/components/_visibility.scss */
table.show-for-xlarge, table.hide-for-large, table.hide-for-large-down {
display: table;
}
/* line 192, src/foundation/scss/foundation/components/_visibility.scss */
thead.show-for-xlarge, thead.hide-for-large, thead.hide-for-large-down {
display: table-header-group !important;
}
/* line 197, src/foundation/scss/foundation/components/_visibility.scss */
tbody.show-for-xlarge, tbody.hide-for-large, tbody.hide-for-large-down {
display: table-row-group !important;
}
/* line 202, src/foundation/scss/foundation/components/_visibility.scss */
tr.show-for-xlarge, tr.hide-for-large, tr.hide-for-large-down {
display: table-row !important;
}
/* line 208, src/foundation/scss/foundation/components/_visibility.scss */
td.show-for-xlarge, td.hide-for-large, td.hide-for-large-down,
th.show-for-xlarge,
th.hide-for-large,
th.hide-for-large-down {
display: table-cell !important;
}
}
/* Orientation targeting */
/* line 215, src/foundation/scss/foundation/components/_visibility.scss */
.show-for-landscape,
.hide-for-portrait {
display: inherit !important;
}
/* line 217, src/foundation/scss/foundation/components/_visibility.scss */
.hide-for-landscape,
.show-for-portrait {
display: none !important;
}
/* Specific visilbity for tables */
/* line 222, src/foundation/scss/foundation/components/_visibility.scss */
table.hide-for-landscape, table.show-for-portrait {
display: table;
}
/* line 226, src/foundation/scss/foundation/components/_visibility.scss */
thead.hide-for-landscape, thead.show-for-portrait {
display: table-header-group !important;
}
/* line 230, src/foundation/scss/foundation/components/_visibility.scss */
tbody.hide-for-landscape, tbody.show-for-portrait {
display: table-row-group !important;
}
/* line 234, src/foundation/scss/foundation/components/_visibility.scss */
tr.hide-for-landscape, tr.show-for-portrait {
display: table-row !important;
}
/* line 239, src/foundation/scss/foundation/components/_visibility.scss */
td.hide-for-landscape, td.show-for-portrait,
th.hide-for-landscape,
th.show-for-portrait {
display: table-cell !important;
}
@media only screen and (orientation: landscape) {
/* line 244, src/foundation/scss/foundation/components/_visibility.scss */
.show-for-landscape,
.hide-for-portrait {
display: inherit !important;
}
/* line 246, src/foundation/scss/foundation/components/_visibility.scss */
.hide-for-landscape,
.show-for-portrait {
display: none !important;
}
/* Specific visilbity for tables */
/* line 251, src/foundation/scss/foundation/components/_visibility.scss */
table.show-for-landscape, table.hide-for-portrait {
display: table;
}
/* line 255, src/foundation/scss/foundation/components/_visibility.scss */
thead.show-for-landscape, thead.hide-for-portrait {
display: table-header-group !important;
}
/* line 259, src/foundation/scss/foundation/components/_visibility.scss */
tbody.show-for-landscape, tbody.hide-for-portrait {
display: table-row-group !important;
}
/* line 263, src/foundation/scss/foundation/components/_visibility.scss */
tr.show-for-landscape, tr.hide-for-portrait {
display: table-row !important;
}
/* line 268, src/foundation/scss/foundation/components/_visibility.scss */
td.show-for-landscape, td.hide-for-portrait,
th.show-for-landscape,
th.hide-for-portrait {
display: table-cell !important;
}
}
@media only screen and (orientation: portrait) {
/* line 274, src/foundation/scss/foundation/components/_visibility.scss */
.show-for-portrait,
.hide-for-landscape {
display: inherit !important;
}
/* line 276, src/foundation/scss/foundation/components/_visibility.scss */
.hide-for-portrait,
.show-for-landscape {
display: none !important;
}
/* Specific visilbity for tables */
/* line 281, src/foundation/scss/foundation/components/_visibility.scss */
table.show-for-portrait, table.hide-for-landscape {
display: table;
}
/* line 285, src/foundation/scss/foundation/components/_visibility.scss */
thead.show-for-portrait, thead.hide-for-landscape {
display: table-header-group !important;
}
/* line 289, src/foundation/scss/foundation/components/_visibility.scss */
tbody.show-for-portrait, tbody.hide-for-landscape {
display: table-row-group !important;
}
/* line 293, src/foundation/scss/foundation/components/_visibility.scss */
tr.show-for-portrait, tr.hide-for-landscape {
display: table-row !important;
}
/* line 298, src/foundation/scss/foundation/components/_visibility.scss */
td.show-for-portrait, td.hide-for-landscape,
th.show-for-portrait,
th.hide-for-landscape {
display: table-cell !important;
}
}
/* Touch-enabled device targeting */
/* line 303, src/foundation/scss/foundation/components/_visibility.scss */
.show-for-touch {
display: none !important;
}
/* line 304, src/foundation/scss/foundation/components/_visibility.scss */
.hide-for-touch {
display: inherit !important;
}
/* line 305, src/foundation/scss/foundation/components/_visibility.scss */
.touch .show-for-touch {
display: inherit !important;
}
/* line 306, src/foundation/scss/foundation/components/_visibility.scss */
.touch .hide-for-touch {
display: none !important;
}
/* Specific visilbity for tables */
/* line 309, src/foundation/scss/foundation/components/_visibility.scss */
table.hide-for-touch {
display: table;
}
/* line 310, src/foundation/scss/foundation/components/_visibility.scss */
.touch table.show-for-touch {
display: table;
}
/* line 311, src/foundation/scss/foundation/components/_visibility.scss */
thead.hide-for-touch {
display: table-header-group !important;
}
/* line 312, src/foundation/scss/foundation/components/_visibility.scss */
.touch thead.show-for-touch {
display: table-header-group !important;
}
/* line 313, src/foundation/scss/foundation/components/_visibility.scss */
tbody.hide-for-touch {
display: table-row-group !important;
}
/* line 314, src/foundation/scss/foundation/components/_visibility.scss */
.touch tbody.show-for-touch {
display: table-row-group !important;
}
/* line 315, src/foundation/scss/foundation/components/_visibility.scss */
tr.hide-for-touch {
display: table-row !important;
}
/* line 316, src/foundation/scss/foundation/components/_visibility.scss */
.touch tr.show-for-touch {
display: table-row !important;
}
/* line 317, src/foundation/scss/foundation/components/_visibility.scss */
td.hide-for-touch {
display: table-cell !important;
}
/* line 318, src/foundation/scss/foundation/components/_visibility.scss */
.touch td.show-for-touch {
display: table-cell !important;
}
/* line 319, src/foundation/scss/foundation/components/_visibility.scss */
th.hide-for-touch {
display: table-cell !important;
}
/* line 320, src/foundation/scss/foundation/components/_visibility.scss */
.touch th.show-for-touch {
display: table-cell !important;
}
/* Foundation Block Grids for below small breakpoint */
@media only screen {
/* line 50, src/foundation/scss/foundation/components/_block-grid.scss */
[class*="block-grid-"] {
display: block;
padding: 0;
margin: -0.625em;
*zoom: 1;
}
/* line 121, src/foundation/scss/foundation/components/_global.scss */
[class*="block-grid-"]:before, [class*="block-grid-"]:after {
content: " ";
display: table;
}
/* line 122, src/foundation/scss/foundation/components/_global.scss */
[class*="block-grid-"]:after {
clear: both;
}
/* line 27, src/foundation/scss/foundation/components/_block-grid.scss */
[class*="block-grid-"] > li {
display: inline;
height: auto;
float: left;
padding: 0 0.625em 1.25em;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-1 > li {
width: 100%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-1 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-1 > li:nth-of-type(1n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-2 > li {
width: 50%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-2 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-2 > li:nth-of-type(2n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-3 > li {
width: 33.33333%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-3 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-3 > li:nth-of-type(3n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-4 > li {
width: 25%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-4 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-4 > li:nth-of-type(4n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-5 > li {
width: 20%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-5 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-5 > li:nth-of-type(5n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-6 > li {
width: 16.66667%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-6 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-6 > li:nth-of-type(6n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-7 > li {
width: 14.28571%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-7 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-7 > li:nth-of-type(7n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-8 > li {
width: 12.5%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-8 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-8 > li:nth-of-type(8n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-9 > li {
width: 11.11111%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-9 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-9 > li:nth-of-type(9n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-10 > li {
width: 10%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-10 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-10 > li:nth-of-type(10n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-11 > li {
width: 9.09091%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-11 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-11 > li:nth-of-type(11n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-12 > li {
width: 8.33333%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-12 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-12 > li:nth-of-type(12n+1) {
clear: both;
}
}
/* Foundation Block Grids for above small breakpoint */
@media only screen and (min-width: 768px) {
/* Remove small grid clearing */
/* line 63, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-1 > li:nth-of-type(1n+1) {
clear: none;
}
/* line 63, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-2 > li:nth-of-type(2n+1) {
clear: none;
}
/* line 63, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-3 > li:nth-of-type(3n+1) {
clear: none;
}
/* line 63, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-4 > li:nth-of-type(4n+1) {
clear: none;
}
/* line 63, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-5 > li:nth-of-type(5n+1) {
clear: none;
}
/* line 63, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-6 > li:nth-of-type(6n+1) {
clear: none;
}
/* line 63, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-7 > li:nth-of-type(7n+1) {
clear: none;
}
/* line 63, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-8 > li:nth-of-type(8n+1) {
clear: none;
}
/* line 63, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-9 > li:nth-of-type(9n+1) {
clear: none;
}
/* line 63, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-10 > li:nth-of-type(10n+1) {
clear: none;
}
/* line 63, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-11 > li:nth-of-type(11n+1) {
clear: none;
}
/* line 63, src/foundation/scss/foundation/components/_block-grid.scss */
.small-block-grid-12 > li:nth-of-type(12n+1) {
clear: none;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-1 > li {
width: 100%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-1 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-1 > li:nth-of-type(1n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-2 > li {
width: 50%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-2 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-2 > li:nth-of-type(2n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-3 > li {
width: 33.33333%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-3 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-3 > li:nth-of-type(3n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-4 > li {
width: 25%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-4 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-4 > li:nth-of-type(4n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-5 > li {
width: 20%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-5 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-5 > li:nth-of-type(5n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-6 > li {
width: 16.66667%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-6 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-6 > li:nth-of-type(6n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-7 > li {
width: 14.28571%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-7 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-7 > li:nth-of-type(7n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-8 > li {
width: 12.5%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-8 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-8 > li:nth-of-type(8n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-9 > li {
width: 11.11111%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-9 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-9 > li:nth-of-type(9n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-10 > li {
width: 10%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-10 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-10 > li:nth-of-type(10n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-11 > li {
width: 9.09091%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-11 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-11 > li:nth-of-type(11n+1) {
clear: both;
}
/* line 36, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-12 > li {
width: 8.33333%;
padding: 0 0.625em 1.25em;
}
/* line 40, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-12 > li:nth-of-type(n) {
clear: none;
}
/* line 41, src/foundation/scss/foundation/components/_block-grid.scss */
.large-block-grid-12 > li:nth-of-type(12n+1) {
clear: both;
}
}
/* line 110, src/foundation/scss/foundation/components/_type.scss */
p.lead {
font-size: 1.21875em;
line-height: 1.6;
}
/* line 115, src/foundation/scss/foundation/components/_type.scss */
.subheader {
line-height: 1.4;
color: #6f6f6f;
font-weight: 300;
margin-top: 0.2em;
margin-bottom: 0.5em;
}
/* Typography resets */
/* line 144, src/foundation/scss/foundation/components/_type.scss */
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
margin: 0;
padding: 0;
direction: ltr;
}
/* Default Link Styles */
/* line 151, src/foundation/scss/foundation/components/_type.scss */
a {
color: #2ba6cb;
text-decoration: none;
line-height: inherit;
}
/* line 157, src/foundation/scss/foundation/components/_type.scss */
a:hover, a:focus {
color: #2795b6;
}
/* line 159, src/foundation/scss/foundation/components/_type.scss */
a img {
border: none;
}
/* Default paragraph styles */
/* line 163, src/foundation/scss/foundation/components/_type.scss */
p {
font-family: inherit;
font-weight: normal;
font-size: 1em;
line-height: 1.6;
margin-bottom: 1.25em;
text-rendering: optimizeLegibility;
}
/* line 173, src/foundation/scss/foundation/components/_type.scss */
p aside {
font-size: 0.875em;
line-height: 1.35;
font-style: italic;
}
/* Default header styles */
/* line 181, src/foundation/scss/foundation/components/_type.scss */
h1, h2, h3, h4, h5, h6 {
font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
font-weight: bold;
font-style: normal;
color: #222222;
text-rendering: optimizeLegibility;
margin-top: 0.2em;
margin-bottom: 0.5em;
line-height: 1.2125em;
}
/* line 191, src/foundation/scss/foundation/components/_type.scss */
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
font-size: 60%;
color: #6f6f6f;
line-height: 0;
}
/* line 198, src/foundation/scss/foundation/components/_type.scss */
h1 {
font-size: 2.125em;
}
/* line 199, src/foundation/scss/foundation/components/_type.scss */
h2 {
font-size: 1.6875em;
}
/* line 200, src/foundation/scss/foundation/components/_type.scss */
h3 {
font-size: 1.375em;
}
/* line 201, src/foundation/scss/foundation/components/_type.scss */
h4 {
font-size: 1.125em;
}
/* line 202, src/foundation/scss/foundation/components/_type.scss */
h5 {
font-size: 1.125em;
}
/* line 203, src/foundation/scss/foundation/components/_type.scss */
h6 {
font-size: 1em;
}
/* line 207, src/foundation/scss/foundation/components/_type.scss */
hr {
border: solid #dddddd;
border-width: 1px 0 0;
clear: both;
margin: 1.25em 0 1.1875em;
height: 0;
}
/* Helpful Typography Defaults */
/* line 217, src/foundation/scss/foundation/components/_type.scss */
em,
i {
font-style: italic;
line-height: inherit;
}
/* line 223, src/foundation/scss/foundation/components/_type.scss */
strong,
b {
font-weight: bold;
line-height: inherit;
}
/* line 228, src/foundation/scss/foundation/components/_type.scss */
small {
font-size: 60%;
line-height: inherit;
}
/* line 233, src/foundation/scss/foundation/components/_type.scss */
code {
font-family: Consolas, "Liberation Mono", Courier, monospace;
font-weight: bold;
color: #7f0a0c;
}
/* Lists */
/* line 242, src/foundation/scss/foundation/components/_type.scss */
ul,
ol,
dl {
font-size: 1em;
line-height: 1.6;
margin-bottom: 1.25em;
list-style-position: outside;
font-family: inherit;
}
/* line 250, src/foundation/scss/foundation/components/_type.scss */
ul, ol {
margin-left: 1.25em;
}
/* Unordered Lists */
/* line 258, src/foundation/scss/foundation/components/_type.scss */
ul li ul,
ul li ol {
margin-left: 1.25em;
margin-bottom: 0;
font-size: 1em;
/* Override nested font-size change */
}
/* line 267, src/foundation/scss/foundation/components/_type.scss */
ul.square li ul, ul.circle li ul, ul.disc li ul {
list-style: inherit;
}
/* line 270, src/foundation/scss/foundation/components/_type.scss */
ul.square {
list-style-type: square;
}
/* line 271, src/foundation/scss/foundation/components/_type.scss */
ul.circle {
list-style-type: circle;
}
/* line 272, src/foundation/scss/foundation/components/_type.scss */
ul.disc {
list-style-type: disc;
}
/* line 273, src/foundation/scss/foundation/components/_type.scss */
ul.no-bullet {
list-style: none;
}
/* Ordered Lists */
/* line 280, src/foundation/scss/foundation/components/_type.scss */
ol li ul,
ol li ol {
margin-left: 1.25em;
margin-bottom: 0;
}
/* Definition Lists */
/* line 289, src/foundation/scss/foundation/components/_type.scss */
dl dt {
margin-bottom: 0.3em;
font-weight: bold;
}
/* line 293, src/foundation/scss/foundation/components/_type.scss */
dl dd {
margin-bottom: 0.75em;
}
/* Abbreviations */
/* line 298, src/foundation/scss/foundation/components/_type.scss */
abbr,
acronym {
text-transform: uppercase;
font-size: 90%;
color: #222222;
border-bottom: 1px dotted #dddddd;
cursor: help;
}
/* line 305, src/foundation/scss/foundation/components/_type.scss */
abbr {
text-transform: none;
}
/* Blockquotes */
/* line 310, src/foundation/scss/foundation/components/_type.scss */
blockquote {
margin: 0 0 1.25em;
padding: 0.5625em 1.25em 0 1.1875em;
border-left: 1px solid #dddddd;
}
/* line 315, src/foundation/scss/foundation/components/_type.scss */
blockquote cite {
display: block;
font-size: 0.8125em;
color: #555555;
}
/* line 319, src/foundation/scss/foundation/components/_type.scss */
blockquote cite:before {
content: "\2014 \0020";
}
/* line 324, src/foundation/scss/foundation/components/_type.scss */
blockquote cite a,
blockquote cite a:visited {
color: #555555;
}
/* line 330, src/foundation/scss/foundation/components/_type.scss */
blockquote,
blockquote p {
line-height: 1.6;
color: #6f6f6f;
}
/* Microformats */
/* line 336, src/foundation/scss/foundation/components/_type.scss */
.vcard {
display: inline-block;
margin: 0 0 1.25em 0;
border: 1px solid #dddddd;
padding: 0.625em 0.75em;
}
/* line 342, src/foundation/scss/foundation/components/_type.scss */
.vcard li {
margin: 0;
display: block;
}
/* line 346, src/foundation/scss/foundation/components/_type.scss */
.vcard .fn {
font-weight: bold;
font-size: 0.9375em;
}
/* line 353, src/foundation/scss/foundation/components/_type.scss */
.vevent .summary {
font-weight: bold;
}
/* line 355, src/foundation/scss/foundation/components/_type.scss */
.vevent abbr {
cursor: default;
text-decoration: none;
font-weight: bold;
border: none;
padding: 0 0.0625em;
}
@media only screen and (min-width: 768px) {
/* line 366, src/foundation/scss/foundation/components/_type.scss */
h1, h2, h3, h4, h5, h6 {
line-height: 1.4;
}
/* line 367, src/foundation/scss/foundation/components/_type.scss */
h1 {
font-size: 2.75em;
}
/* line 368, src/foundation/scss/foundation/components/_type.scss */
h2 {
font-size: 2.3125em;
}
/* line 369, src/foundation/scss/foundation/components/_type.scss */
h3 {
font-size: 1.6875em;
}
/* line 370, src/foundation/scss/foundation/components/_type.scss */
h4 {
font-size: 1.4375em;
}
}
/*
* Print styles.
*
* Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
* Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
*/
/* line 381, src/foundation/scss/foundation/components/_type.scss */
.print-only {
display: none !important;
}
@media print {
/* line 383, src/foundation/scss/foundation/components/_type.scss */
* {
background: transparent !important;
color: #000 !important;
/* Black prints faster: h5bp.com/s */
box-shadow: none !important;
text-shadow: none !important;
}
/* line 391, src/foundation/scss/foundation/components/_type.scss */
a,
a:visited {
text-decoration: underline;
}
/* line 392, src/foundation/scss/foundation/components/_type.scss */
a[href]:after {
content: " (" attr(href) ")";
}
/* line 394, src/foundation/scss/foundation/components/_type.scss */
abbr[title]:after {
content: " (" attr(title) ")";
}
/* line 399, src/foundation/scss/foundation/components/_type.scss */
.ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
content: "";
}
/* line 402, src/foundation/scss/foundation/components/_type.scss */
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
/* line 407, src/foundation/scss/foundation/components/_type.scss */
thead {
display: table-header-group;
/* h5bp.com/t */
}
/* line 410, src/foundation/scss/foundation/components/_type.scss */
tr,
img {
page-break-inside: avoid;
}
/* line 412, src/foundation/scss/foundation/components/_type.scss */
img {
max-width: 100% !important;
}
@page {
margin: 0.5cm;
}
/* line 418, src/foundation/scss/foundation/components/_type.scss */
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
/* line 424, src/foundation/scss/foundation/components/_type.scss */
h2,
h3 {
page-break-after: avoid;
}
/* line 426, src/foundation/scss/foundation/components/_type.scss */
.hide-on-print {
display: none !important;
}
/* line 427, src/foundation/scss/foundation/components/_type.scss */
.print-only {
display: block !important;
}
/* line 428, src/foundation/scss/foundation/components/_type.scss */
.hide-for-print {
display: none !important;
}
/* line 429, src/foundation/scss/foundation/components/_type.scss */
.show-for-print {
display: inherit !important;
}
}
/* line 170, src/foundation/scss/foundation/components/_buttons.scss */
button, .button {
border-style: solid;
border-width: 1px;
cursor: pointer;
font-family: inherit;
font-weight: bold;
line-height: 1;
margin: 0 0 1.25em;
position: relative;
text-decoration: none;
text-align: center;
display: inline-block;
padding-top: 0.75em;
padding-right: 1.5em;
padding-bottom: 0.8125em;
padding-left: 1.5em;
font-size: 1em;
background-color: #2ba6cb;
border-color: #2284a1;
color: white;
}
/* line 121, src/foundation/scss/foundation/components/_buttons.scss */
button:hover, button:focus, .button:hover, .button:focus {
background-color: #2284a1;
}
/* line 132, src/foundation/scss/foundation/components/_buttons.scss */
button:hover, button:focus, .button:hover, .button:focus {
color: white;
}
/* line 175, src/foundation/scss/foundation/components/_buttons.scss */
button.secondary, .button.secondary {
background-color: #e9e9e9;
border-color: #d0d0d0;
color: #333333;
}
/* line 121, src/foundation/scss/foundation/components/_buttons.scss */
button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
background-color: #d0d0d0;
}
/* line 127, src/foundation/scss/foundation/components/_buttons.scss */
button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
color: #333333;
}
/* line 176, src/foundation/scss/foundation/components/_buttons.scss */
button.success, .button.success {
background-color: #5da423;
border-color: #457a1a;
color: white;
}
/* line 121, src/foundation/scss/foundation/components/_buttons.scss */
button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
background-color: #457a1a;
}
/* line 132, src/foundation/scss/foundation/components/_buttons.scss */
button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
color: white;
}
/* line 177, src/foundation/scss/foundation/components/_buttons.scss */
button.alert, .button.alert {
background-color: #c60f13;
border-color: #970b0e;
color: white;
}
/* line 121, src/foundation/scss/foundation/components/_buttons.scss */
button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
background-color: #970b0e;
}
/* line 132, src/foundation/scss/foundation/components/_buttons.scss */
button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
color: white;
}
/* line 179, src/foundation/scss/foundation/components/_buttons.scss */
button.large, .button.large {
padding-top: 1em;
padding-right: 2em;
padding-bottom: 1.0625em;
padding-left: 2em;
font-size: 1.25em;
}
/* line 180, src/foundation/scss/foundation/components/_buttons.scss */
button.small, .button.small {
padding-top: 0.5625em;
padding-right: 1.125em;
padding-bottom: 0.625em;
padding-left: 1.125em;
font-size: 0.8125em;
}
/* line 181, src/foundation/scss/foundation/components/_buttons.scss */
button.tiny, .button.tiny {
padding-top: 0.4375em;
padding-right: 0.875em;
padding-bottom: 0.5em;
padding-left: 0.875em;
font-size: 0.6875em;
}
/* line 182, src/foundation/scss/foundation/components/_buttons.scss */
button.expand, .button.expand {
padding-right: 0px;
padding-left: 0px;
width: 100%;
}
/* line 184, src/foundation/scss/foundation/components/_buttons.scss */
button.left-align, .button.left-align {
text-align: left;
text-indent: 0.75em;
}
/* line 185, src/foundation/scss/foundation/components/_buttons.scss */
button.right-align, .button.right-align {
text-align: right;
padding-right: 0.75em;
}
/* line 187, src/foundation/scss/foundation/components/_buttons.scss */
button.disabled, button[disabled], .button.disabled, .button[disabled] {
background-color: #2ba6cb;
border-color: #2284a1;
color: white;
cursor: default;
opacity: 0.6;
-webkit-box-shadow: none;
box-shadow: none;
}
/* line 121, src/foundation/scss/foundation/components/_buttons.scss */
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
background-color: #2284a1;
}
/* line 132, src/foundation/scss/foundation/components/_buttons.scss */
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
color: white;
}
/* line 145, src/foundation/scss/foundation/components/_buttons.scss */
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
background-color: #2ba6cb;
}
/* line 188, src/foundation/scss/foundation/components/_buttons.scss */
button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
background-color: #e9e9e9;
border-color: #d0d0d0;
color: #333333;
cursor: default;
opacity: 0.6;
-webkit-box-shadow: none;
box-shadow: none;
}
/* line 121, src/foundation/scss/foundation/components/_buttons.scss */
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
background-color: #d0d0d0;
}
/* line 127, src/foundation/scss/foundation/components/_buttons.scss */
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
color: #333333;
}
/* line 145, src/foundation/scss/foundation/components/_buttons.scss */
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
background-color: #e9e9e9;
}
/* line 189, src/foundation/scss/foundation/components/_buttons.scss */
button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
background-color: #5da423;
border-color: #457a1a;
color: white;
cursor: default;
opacity: 0.6;
-webkit-box-shadow: none;
box-shadow: none;
}
/* line 121, src/foundation/scss/foundation/components/_buttons.scss */
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
background-color: #457a1a;
}
/* line 132, src/foundation/scss/foundation/components/_buttons.scss */
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
color: white;
}
/* line 145, src/foundation/scss/foundation/components/_buttons.scss */
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
background-color: #5da423;
}
/* line 190, src/foundation/scss/foundation/components/_buttons.scss */
button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
background-color: #c60f13;
border-color: #970b0e;
color: white;
cursor: default;
opacity: 0.6;
-webkit-box-shadow: none;
box-shadow: none;
}
/* line 121, src/foundation/scss/foundation/components/_buttons.scss */
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
background-color: #970b0e;
}
/* line 132, src/foundation/scss/foundation/components/_buttons.scss */
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
color: white;
}
/* line 145, src/foundation/scss/foundation/components/_buttons.scss */
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
background-color: #c60f13;
}
/* line 195, src/foundation/scss/foundation/components/_buttons.scss */
button, .button {
padding-top: 0.8125em;
padding-bottom: 0.75em;
}
/* line 197, src/foundation/scss/foundation/components/_buttons.scss */
button.tiny, .button.tiny {
padding-top: 0.5em;
padding-bottom: 0.4375em;
}
/* line 198, src/foundation/scss/foundation/components/_buttons.scss */
button.small, .button.small {
padding-top: 0.625em;
padding-bottom: 0.5625em;
}
/* line 199, src/foundation/scss/foundation/components/_buttons.scss */
button.large, .button.large {
padding-top: 1.03125em;
padding-bottom: 1.03125em;
}
@media only screen {
/* line 205, src/foundation/scss/foundation/components/_buttons.scss */
button, .button {
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
-webkit-transition: background-color 300ms ease-out;
-moz-transition: background-color 300ms ease-out;
transition: background-color 300ms ease-out;
}
/* line 68, src/foundation/scss/foundation/components/_global.scss */
button:active, .button:active {
-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset;
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset;
}
/* line 213, src/foundation/scss/foundation/components/_buttons.scss */
button.radius, .button.radius {
-webkit-border-radius: 3px;
border-radius: 3px;
}
/* line 214, src/foundation/scss/foundation/components/_buttons.scss */
button.round, .button.round {
-webkit-border-radius: 1000px;
border-radius: 1000px;
}
}
@media only screen and (min-width: 768px) {
/* line 222, src/foundation/scss/foundation/components/_buttons.scss */
button, .button {
display: inline-block;
}
}
/* Standard Forms */
/* line 258, src/foundation/scss/foundation/components/_forms.scss */
form {
margin: 0 0 1em;
}
/* Using forms within rows, we need to set some defaults */
/* line 67, src/foundation/scss/foundation/components/_forms.scss */
form .row .row {
margin: 0 -0.5em;
}
/* line 70, src/foundation/scss/foundation/components/_forms.scss */
form .row .row .column,
form .row .row .columns {
padding: 0 0.5em;
}
/* line 73, src/foundation/scss/foundation/components/_forms.scss */
form .row .row.collapse {
margin: 0;
}
/* line 76, src/foundation/scss/foundation/components/_forms.scss */
form .row .row.collapse .column,
form .row .row.collapse .columns {
padding: 0;
}
/* line 83, src/foundation/scss/foundation/components/_forms.scss */
form .row input.column,
form .row input.columns,
form .row textarea.column,
form .row textarea.columns {
padding-left: 0.5em;
}
/* Label Styles */
/* line 264, src/foundation/scss/foundation/components/_forms.scss */
label {
font-size: 0.875em;
color: #4d4d4d;
cursor: pointer;
display: block;
font-weight: 500;
margin-bottom: 0.1875em;
}
/* line 265, src/foundation/scss/foundation/components/_forms.scss */
label.right {
float: none;
text-align: right;
}
/* line 266, src/foundation/scss/foundation/components/_forms.scss */
label.inline {
margin: 0 0 1em 0;
padding: 0.625em 0;
}
/* Attach elements to the beginning or end of an input */
/* line 271, src/foundation/scss/foundation/components/_forms.scss */
.prefix,
.postfix {
display: block;
position: relative;
z-index: 2;
text-align: center;
width: 100%;
padding-top: 0;
padding-bottom: 0;
border-style: solid;
border-width: 1px;
overflow: hidden;
font-size: 0.875em;
height: 2.3125em;
line-height: 2.3125em;
}
/* Adjust padding, alignment and radius if pre/post element is a button */
/* line 274, src/foundation/scss/foundation/components/_forms.scss */
.postfix.button {
padding-left: 0;
padding-right: 0;
padding-top: 0;
padding-bottom: 0;
text-align: center;
line-height: 2.125em;
}
/* line 275, src/foundation/scss/foundation/components/_forms.scss */
.prefix.button {
padding-left: 0;
padding-right: 0;
padding-top: 0;
padding-bottom: 0;
text-align: center;
line-height: 2.125em;
}
/* line 277, src/foundation/scss/foundation/components/_forms.scss */
.prefix.button.radius {
-webkit-border-radius: 0;
border-radius: 0;
-moz-border-radius-bottomleft: 3px;
-moz-border-radius-topleft: 3px;
-webkit-border-bottom-left-radius: 3px;
-webkit-border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
border-top-left-radius: 3px;
}
/* line 278, src/foundation/scss/foundation/components/_forms.scss */
.postfix.button.radius {
-webkit-border-radius: 0;
border-radius: 0;
-moz-border-radius-topright: 3px;
-moz-border-radius-bottomright: 3px;
-webkit-border-top-right-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
/* line 279, src/foundation/scss/foundation/components/_forms.scss */
.prefix.button.round {
-webkit-border-radius: 0;
border-radius: 0;
-moz-border-radius-bottomleft: 1000px;
-moz-border-radius-topleft: 1000px;
-webkit-border-bottom-left-radius: 1000px;
-webkit-border-top-left-radius: 1000px;
border-bottom-left-radius: 1000px;
border-top-left-radius: 1000px;
}
/* line 280, src/foundation/scss/foundation/components/_forms.scss */
.postfix.button.round {
-webkit-border-radius: 0;
border-radius: 0;
-moz-border-radius-topright: 1000px;
-moz-border-radius-bottomright: 1000px;
-webkit-border-top-right-radius: 1000px;
-webkit-border-bottom-right-radius: 1000px;
border-top-right-radius: 1000px;
border-bottom-right-radius: 1000px;
}
/* Separate prefix and postfix styles when on span so buttons keep their own */
/* line 283, src/foundation/scss/foundation/components/_forms.scss */
span.prefix {
background: #019934;
border-color: #016623;
border-right: none;
color: white;
}
/* line 284, src/foundation/scss/foundation/components/_forms.scss */
span.prefix.radius {
-webkit-border-radius: 0;
border-radius: 0;
-moz-border-radius-bottomleft: 3px;
-moz-border-radius-topleft: 3px;
-webkit-border-bottom-left-radius: 3px;
-webkit-border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
border-top-left-radius: 3px;
}
/* line 286, src/foundation/scss/foundation/components/_forms.scss */
span.postfix {
background: #019934;
border-color: #014d1a;
border-left: none;
color: white;
}
/* line 287, src/foundation/scss/foundation/components/_forms.scss */
span.postfix.radius {
-webkit-border-radius: 0;
border-radius: 0;
-moz-border-radius-topright: 3px;
-moz-border-radius-bottomright: 3px;
-webkit-border-top-right-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
/* Input groups will automatically style first and last elements of the group */
/* line 293, src/foundation/scss/foundation/components/_forms.scss */
.input-group.radius > *:first-child, .input-group.radius > *:first-child * {
-moz-border-radius-bottomleft: 3px;
-moz-border-radius-topleft: 3px;
-webkit-border-bottom-left-radius: 3px;
-webkit-border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
border-top-left-radius: 3px;
}
/* line 296, src/foundation/scss/foundation/components/_forms.scss */
.input-group.radius > *:last-child, .input-group.radius > *:last-child * {
-moz-border-radius-topright: 3px;
-moz-border-radius-bottomright: 3px;
-webkit-border-top-right-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
/* line 301, src/foundation/scss/foundation/components/_forms.scss */
.input-group.round > *:first-child, .input-group.round > *:first-child * {
-moz-border-radius-bottomleft: 1000px;
-moz-border-radius-topleft: 1000px;
-webkit-border-bottom-left-radius: 1000px;
-webkit-border-top-left-radius: 1000px;
border-bottom-left-radius: 1000px;
border-top-left-radius: 1000px;
}
/* line 304, src/foundation/scss/foundation/components/_forms.scss */
.input-group.round > *:last-child, .input-group.round > *:last-child * {
-moz-border-radius-topright: 1000px;
-moz-border-radius-bottomright: 1000px;
-webkit-border-top-right-radius: 1000px;
-webkit-border-bottom-right-radius: 1000px;
border-top-right-radius: 1000px;
border-bottom-right-radius: 1000px;
}
/* We use this to get basic styling on all basic form elements */
/* line 324, src/foundation/scss/foundation/components/_forms.scss */
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea {
background-color: white;
font-family: inherit;
border: 1px solid #cccccc;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
color: rgba(0, 0, 0, 0.75);
display: block;
font-size: 0.875em;
margin: 0 0 1em 0;
padding: 0.5em;
height: 2.3125em;
width: 100%;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: -webkit-box-shadow 0.45s, border-color 0.45s ease-in-out;
-moz-transition: -moz-box-shadow 0.45s, border-color 0.45s ease-in-out;
transition: box-shadow 0.45s, border-color 0.45s ease-in-out;
}
/* line 134, src/foundation/scss/foundation/components/_global.scss */
input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
textarea:focus {
-webkit-box-shadow: 0 0 5px #019934;
-moz-box-shadow: 0 0 5px #019934;
box-shadow: 0 0 5px #019934;
border-color: #019934;
}
/* line 107, src/foundation/scss/foundation/components/_forms.scss */
input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
textarea:focus {
background: #fafafa;
border-color: #019934;
outline: none;
}
/* line 114, src/foundation/scss/foundation/components/_forms.scss */
input[type="text"][disabled],
input[type="password"][disabled],
input[type="date"][disabled],
input[type="datetime"][disabled],
input[type="datetime-local"][disabled],
input[type="month"][disabled],
input[type="week"][disabled],
input[type="email"][disabled],
input[type="number"][disabled],
input[type="search"][disabled],
input[type="tel"][disabled],
input[type="time"][disabled],
input[type="url"][disabled],
textarea[disabled] {
background-color: #dddddd;
}
/* Adjust margin for form elements below */
/* line 335, src/foundation/scss/foundation/components/_forms.scss */
input[type="file"],
input[type="checkbox"],
input[type="radio"],
select {
margin: 0 0 1em 0;
}
/* Normalize file input width */
/* line 340, src/foundation/scss/foundation/components/_forms.scss */
input[type="file"] {
width: 100%;
}
/* We add basic fieldset styling */
/* line 345, src/foundation/scss/foundation/components/_forms.scss */
fieldset {
border: solid 1px #dddddd;
padding: 1.25em;
margin: 1.125em 0;
}
/* line 215, src/foundation/scss/foundation/components/_forms.scss */
fieldset legend {
font-weight: bold;
background: white;
padding: 0 0.1875em;
margin: 0;
margin-left: -0.1875em;
}
/* Error Handling */
/* line 353, src/foundation/scss/foundation/components/_forms.scss */
.error input,
input.error,
.error textarea,
textarea.error {
border-color: #c60f13;
background-color: rgba(198, 15, 19, 0.1);
}
/* line 230, src/foundation/scss/foundation/components/_forms.scss */
.error input:focus,
input.error:focus,
.error textarea:focus,
textarea.error:focus {
background: #fafafa;
border-color: #019934;
}
/* line 358, src/foundation/scss/foundation/components/_forms.scss */
.error label,
label.error {
color: #c60f13;
}
/* line 361, src/foundation/scss/foundation/components/_forms.scss */
.error small,
small.error {
display: block;
padding: 0.375em 0.25em;
margin-top: -1.3125em;
margin-bottom: 1em;
font-size: 0.75em;
font-weight: bold;
background: #c60f13;
color: white;
}
/* Custom Checkbox and Radio Inputs */
/* line 67, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .hidden-field {
margin-left: -99999px;
position: absolute;
visibility: hidden;
}
/* line 73, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom {
display: inline-block;
width: 16px;
height: 16px;
position: relative;
vertical-align: middle;
border: solid 1px #cccccc;
background: white;
}
/* line 82, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.checkbox {
-webkit-border-radius: 0px;
border-radius: 0px;
padding: -1px;
}
/* line 86, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.radio {
-webkit-border-radius: 1000px;
border-radius: 1000px;
padding: 3px;
}
/* line 91, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.checkbox:before {
content: "";
display: block;
font-size: 16px;
color: white;
}
/* line 100, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.radio.checked:before {
content: "";
display: block;
width: 8px;
height: 8px;
-webkit-border-radius: 1000px;
border-radius: 1000px;
background: #222222;
position: relative;
}
/* line 112, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.checkbox.checked:before {
content: "\00d7";
color: #222222;
position: absolute;
top: -50%;
left: 50%;
margin-top: 4px;
margin-left: -5px;
}
/* Custom Select Options and Dropdowns */
/* line 126, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom {
/* Custom input, disabled */
}
/* line 127, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown {
display: block;
position: relative;
top: 0;
height: 2.3125em;
margin-bottom: 1.25em;
margin-top: 0px;
padding: 0px;
width: 100%;
background: white;
background: -moz-linear-gradient(top, white 0%, #f3f3f3 100%);
background: -webkit-linear-gradient(top, white 0%, #f3f3f3 100%);
-webkit-box-shadow: none;
background: linear-gradient(to bottom, #ffffff 0%, #f3f3f3 100%);
box-shadow: none;
font-size: 0.875em;
vertical-align: top;
}
/* line 147, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown ul {
overflow-y: auto;
max-height: 200px;
}
/* line 152, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown .current {
cursor: default;
white-space: nowrap;
line-height: 2.25em;
color: rgba(0, 0, 0, 0.75);
text-decoration: none;
overflow: hidden;
display: block;
margin-left: 0.5em;
margin-right: 2.3125em;
}
/* line 164, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown .selector {
cursor: default;
position: absolute;
width: 2.5em;
height: 2.3125em;
display: block;
right: 0;
top: 0;
}
/* line 172, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown .selector:after {
content: "";
display: block;
content: "";
display: block;
width: 0;
height: 0;
border: inset 5px;
border-color: #aaaaaa transparent transparent transparent;
border-top-style: solid;
position: absolute;
left: 0.9375em;
top: 50%;
margin-top: -3px;
}
/* line 185, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown:hover a.selector:after, form.custom .custom.dropdown.open a.selector:after {
content: "";
display: block;
width: 0;
height: 0;
border: inset 5px;
border-color: #222222 transparent transparent transparent;
border-top-style: solid;
}
/* line 189, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown .disabled {
color: #888888;
}
/* line 191, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown .disabled:hover {
background: transparent;
color: #888888;
}
/* line 194, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown .disabled:hover:after {
display: none;
}
/* line 198, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown.open ul {
display: block;
z-index: 10;
min-width: 100%;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
/* line 205, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown.small {
max-width: 134px;
}
/* line 206, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown.medium {
max-width: 254px;
}
/* line 207, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown.large {
max-width: 434px;
}
/* line 208, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown.expand {
width: 100% !important;
}
/* line 210, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown.open.small ul {
min-width: 134px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
/* line 211, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown.open.medium ul {
min-width: 254px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
/* line 212, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown.open.large ul {
min-width: 434px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
/* line 215, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown ul {
position: absolute;
width: auto;
display: none;
margin: 0;
left: -1px;
top: auto;
-webkit-box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1);
margin: 0;
padding: 0;
background: white;
border: solid 1px #cccccc;
font-size: 16px;
}
/* line 232, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown ul li {
color: #555555;
font-size: 0.875em;
cursor: default;
padding-top: 0.25em;
padding-bottom: 0.25em;
padding-left: 0.375em;
padding-right: 2.375em;
min-height: 1.5em;
line-height: 1.5em;
margin: 0;
white-space: nowrap;
list-style: none;
}
/* line 246, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown ul li.selected {
background: #eeeeee;
color: black;
}
/* line 250, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown ul li:hover {
background-color: #e4e4e4;
color: black;
}
/* line 254, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown ul li.selected:hover {
background: #eeeeee;
cursor: default;
color: black;
}
/* line 261, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown ul.show {
display: block;
}
/* line 265, src/foundation/scss/foundation/components/_custom-forms.scss */
form.custom .custom.disabled {
background: #dddddd;
}
/* Button Groups */
/* line 72, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group {
list-style: none;
margin: 0;
*zoom: 1;
}
/* line 121, src/foundation/scss/foundation/components/_global.scss */
.button-group:before, .button-group:after {
content: " ";
display: table;
}
/* line 122, src/foundation/scss/foundation/components/_global.scss */
.button-group:after {
clear: both;
}
/* line 74, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group > * {
margin: 0 0 0 -1px;
float: left;
}
/* line 35, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group > *:first-child {
margin-left: 0;
}
/* line 53, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.radius > *:first-child, .button-group.radius > *:first-child > a, .button-group.radius > *:first-child > button, .button-group.radius > *:first-child > .button {
-moz-border-radius-bottomleft: 3px;
-moz-border-radius-topleft: 3px;
-webkit-border-bottom-left-radius: 3px;
-webkit-border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
border-top-left-radius: 3px;
}
/* line 57, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.radius > *:last-child, .button-group.radius > *:last-child > a, .button-group.radius > *:last-child > button, .button-group.radius > *:last-child > .button {
-moz-border-radius-topright: 3px;
-moz-border-radius-bottomright: 3px;
-webkit-border-top-right-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
/* line 53, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.round > *:first-child, .button-group.round > *:first-child > a, .button-group.round > *:first-child > button, .button-group.round > *:first-child > .button {
-moz-border-radius-bottomleft: 1000px;
-moz-border-radius-topleft: 1000px;
-webkit-border-bottom-left-radius: 1000px;
-webkit-border-top-left-radius: 1000px;
border-bottom-left-radius: 1000px;
border-top-left-radius: 1000px;
}
/* line 57, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.round > *:last-child, .button-group.round > *:last-child > a, .button-group.round > *:last-child > button, .button-group.round > *:last-child > .button {
-moz-border-radius-topright: 1000px;
-moz-border-radius-bottomright: 1000px;
-webkit-border-top-right-radius: 1000px;
-webkit-border-bottom-right-radius: 1000px;
border-top-right-radius: 1000px;
border-bottom-right-radius: 1000px;
}
/* line 80, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.even-2 li {
width: 50%;
}
/* line 63, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.even-2 li button, .button-group.even-2 li .button {
width: 100%;
}
/* line 80, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.even-3 li {
width: 33.33333%;
}
/* line 63, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.even-3 li button, .button-group.even-3 li .button {
width: 100%;
}
/* line 80, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.even-4 li {
width: 25%;
}
/* line 63, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.even-4 li button, .button-group.even-4 li .button {
width: 100%;
}
/* line 80, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.even-5 li {
width: 20%;
}
/* line 63, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.even-5 li button, .button-group.even-5 li .button {
width: 100%;
}
/* line 80, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.even-6 li {
width: 16.66667%;
}
/* line 63, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.even-6 li button, .button-group.even-6 li .button {
width: 100%;
}
/* line 80, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.even-7 li {
width: 14.28571%;
}
/* line 63, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.even-7 li button, .button-group.even-7 li .button {
width: 100%;
}
/* line 80, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.even-8 li {
width: 12.5%;
}
/* line 63, src/foundation/scss/foundation/components/_button-groups.scss */
.button-group.even-8 li button, .button-group.even-8 li .button {
width: 100%;
}
/* line 84, src/foundation/scss/foundation/components/_button-groups.scss */
.button-bar {
*zoom: 1;
}
/* line 121, src/foundation/scss/foundation/components/_global.scss */
.button-bar:before, .button-bar:after {
content: " ";
display: table;
}
/* line 122, src/foundation/scss/foundation/components/_global.scss */
.button-bar:after {
clear: both;
}
/* line 86, src/foundation/scss/foundation/components/_button-groups.scss */
.button-bar .button-group {
float: left;
margin-right: 0.625em;
}
/* line 23, src/foundation/scss/foundation/components/_button-groups.scss */
.button-bar .button-group div {
overflow: hidden;
}
/* Dropdown Button */
/* line 108, src/foundation/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button {
position: relative;
padding-right: 3.1875em;
}
/* line 46, src/foundation/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button:before {
position: absolute;
content: "";
width: 0;
height: 0;
display: block;
border-style: solid;
border-color: white transparent transparent transparent;
top: 50%;
}
/* line 81, src/foundation/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button:before {
border-width: 0.5625em;
right: 1.5em;
margin-top: -0.25em;
}
/* line 100, src/foundation/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button:before {
border-color: white transparent transparent transparent;
}
/* line 109, src/foundation/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.tiny {
padding-right: 2.1875em;
}
/* line 61, src/foundation/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.tiny:before {
border-width: 0.4375em;
right: 0.875em;
margin-top: -0.15625em;
}
/* line 100, src/foundation/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.tiny:before {
border-color: white transparent transparent transparent;
}
/* line 110, src/foundation/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.small {
padding-right: 2.8125em;
}
/* line 71, src/foundation/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.small:before {
border-width: 0.5625em;
right: 1.125em;
margin-top: -0.21875em;
}
/* line 100, src/foundation/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.small:before {
border-color: white transparent transparent transparent;
}
/* line 111, src/foundation/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.large {
padding-right: 4em;
}
/* line 91, src/foundation/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.large:before {
border-width: 0.625em;
right: 1.75em;
margin-top: -0.3125em;
}
/* line 100, src/foundation/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.large:before {
border-color: white transparent transparent transparent;
}
/* line 112, src/foundation/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.secondary:before {
border-color: #333333 transparent transparent transparent;
}
/* Split Buttons */
/* line 150, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button {
position: relative;
padding-right: 4.8em;
}
/* line 53, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button span {
display: block;
height: 100%;
position: absolute;
right: 0;
top: 0;
border-left: solid 1px;
}
/* line 62, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button span:before {
position: absolute;
content: "";
width: 0;
height: 0;
display: block;
border-style: inset;
left: 50%;
}
/* line 73, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button span:active {
background-color: rgba(0, 0, 0, 0.1);
}
/* line 79, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button span {
border-left-color: #1e728c;
}
/* line 116, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button span {
width: 3em;
}
/* line 117, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button span:before {
border-top-style: solid;
border-width: 0.5625em;
top: 1.125em;
margin-left: -0.5625em;
}
/* line 142, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button span:before {
border-color: white transparent transparent transparent;
}
/* line 79, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button.secondary span {
border-left-color: #c3c3c3;
}
/* line 142, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button.secondary span:before {
border-color: white transparent transparent transparent;
}
/* line 79, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button.alert span {
border-left-color: #7f0a0c;
}
/* line 79, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button.success span {
border-left-color: #396516;
}
/* line 156, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button.tiny {
padding-right: 3.9375em;
}
/* line 88, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button.tiny span {
width: 2.84375em;
}
/* line 89, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button.tiny span:before {
border-top-style: solid;
border-width: 0.4375em;
top: 0.875em;
margin-left: -0.3125em;
}
/* line 157, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button.small {
padding-right: 3.9375em;
}
/* line 102, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button.small span {
width: 2.8125em;
}
/* line 103, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button.small span:before {
border-top-style: solid;
border-width: 0.5625em;
top: 0.84375em;
margin-left: -0.5625em;
}
/* line 158, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button.large {
padding-right: 6em;
}
/* line 130, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button.large span {
width: 3.75em;
}
/* line 131, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button.large span:before {
border-top-style: solid;
border-width: 0.625em;
top: 1.3125em;
margin-left: -0.5625em;
}
/* line 159, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button.expand {
padding-left: 2em;
}
/* line 142, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button.secondary span:before {
border-color: #333333 transparent transparent transparent;
}
/* line 163, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button.radius span {
-moz-border-radius-topright: 3px;
-moz-border-radius-bottomright: 3px;
-webkit-border-top-right-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
/* line 164, src/foundation/scss/foundation/components/_split-buttons.scss */
.split.button.round span {
-moz-border-radius-topright: 1000px;
-moz-border-radius-bottomright: 1000px;
-webkit-border-top-right-radius: 1000px;
-webkit-border-bottom-right-radius: 1000px;
border-top-right-radius: 1000px;
border-bottom-right-radius: 1000px;
}
/* Flex Video */
/* line 44, src/foundation/scss/foundation/components/_flex-video.scss */
.flex-video {
position: relative;
padding-top: 1.5625em;
padding-bottom: 67.5%;
height: 0;
margin-bottom: 1em;
overflow: hidden;
}
/* line 26, src/foundation/scss/foundation/components/_flex-video.scss */
.flex-video.widescreen {
padding-bottom: 57.25%;
}
/* line 27, src/foundation/scss/foundation/components/_flex-video.scss */
.flex-video.vimeo {
padding-top: 0;
}
/* line 32, src/foundation/scss/foundation/components/_flex-video.scss */
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* Sections */
/* line 273, src/foundation/scss/foundation/components/_section.scss */
.section-container, .section-container.auto {
width: 100%;
display: block;
margin-bottom: 1.25em;
border: 1px solid #cccccc;
border-top: none;
}
/* line 277, src/foundation/scss/foundation/components/_section.scss */
.section-container > section, .section-container > .section, .section-container.auto > section, .section-container.auto > .section {
position: relative;
}
/* line 87, src/foundation/scss/foundation/components/_section.scss */
.section-container > section > .title, .section-container > .section > .title, .section-container.auto > section > .title, .section-container.auto > .section > .title {
background-color: #efefef;
cursor: pointer;
margin-bottom: 0;
}
/* line 92, src/foundation/scss/foundation/components/_section.scss */
.section-container > section > .title a, .section-container > .section > .title a, .section-container.auto > section > .title a, .section-container.auto > .section > .title a {
padding: 0.9375em;
display: inline-block;
color: #333333;
font-size: 0.875em;
white-space: nowrap;
}
/* line 99, src/foundation/scss/foundation/components/_section.scss */
.section-container > section > .title:hover, .section-container > .section > .title:hover, .section-container.auto > section > .title:hover, .section-container.auto > .section > .title:hover {
background-color: #e2e2e2;
}
/* line 102, src/foundation/scss/foundation/components/_section.scss */
.section-container > section .content, .section-container > .section .content, .section-container.auto > section .content, .section-container.auto > .section .content {
display: none;
padding: 0.9375em;
background-color: white;
}
/* line 107, src/foundation/scss/foundation/components/_section.scss */
.section-container > section .content > *:last-child, .section-container > .section .content > *:last-child, .section-container.auto > section .content > *:last-child, .section-container.auto > .section .content > *:last-child {
margin-bottom: 0;
}
/* line 108, src/foundation/scss/foundation/components/_section.scss */
.section-container > section .content > *:first-child, .section-container > .section .content > *:first-child, .section-container.auto > section .content > *:first-child, .section-container.auto > .section .content > *:first-child {
padding-top: 0;
}
/* line 109, src/foundation/scss/foundation/components/_section.scss */
.section-container > section .content > *:last-child, .section-container > .section .content > *:last-child, .section-container.auto > section .content > *:last-child, .section-container.auto > .section .content > *:last-child {
padding-bottom: 0;
}
/* line 113, src/foundation/scss/foundation/components/_section.scss */
.section-container > section.active > .content, .section-container > .section.active > .content, .section-container.auto > section.active > .content, .section-container.auto > .section.active > .content {
display: block;
}
/* line 114, src/foundation/scss/foundation/components/_section.scss */
.section-container > section.active > .title, .section-container > .section.active > .title, .section-container.auto > section.active > .title, .section-container.auto > .section.active > .title {
background: #d5d5d5;
}
/* line 115, src/foundation/scss/foundation/components/_section.scss */
.section-container > section.active > .title a, .section-container > .section.active > .title a, .section-container.auto > section.active > .title a, .section-container.auto > .section.active > .title a {
color: #333333;
}
/* line 124, src/foundation/scss/foundation/components/_section.scss */
.section-container > section > .title, .section-container > .section > .title, .section-container.auto > section > .title, .section-container.auto > .section > .title {
top: 0;
width: 100%;
margin: 0;
border-top: solid 1px #cccccc;
}
/* line 130, src/foundation/scss/foundation/components/_section.scss */
.section-container > section > .title a, .section-container > .section > .title a, .section-container.auto > section > .title a, .section-container.auto > .section > .title a {
width: 100%;
}
/* line 280, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs {
border: 0;
position: relative;
}
/* line 284, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs > section, .section-container.tabs > .section {
border: 0;
position: static;
}
/* line 87, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs > section > .title, .section-container.tabs > .section > .title {
background-color: #efefef;
cursor: pointer;
margin-bottom: 0;
}
/* line 92, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs > section > .title a, .section-container.tabs > .section > .title a {
padding: 0.9375em;
display: inline-block;
color: #333333;
font-size: 0.875em;
white-space: nowrap;
}
/* line 99, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs > section > .title:hover, .section-container.tabs > .section > .title:hover {
background-color: #e2e2e2;
}
/* line 102, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs > section .content, .section-container.tabs > .section .content {
display: none;
padding: 0.9375em;
background-color: white;
}
/* line 107, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs > section .content > *:last-child, .section-container.tabs > .section .content > *:last-child {
margin-bottom: 0;
}
/* line 108, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs > section .content > *:first-child, .section-container.tabs > .section .content > *:first-child {
padding-top: 0;
}
/* line 109, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs > section .content > *:last-child, .section-container.tabs > .section .content > *:last-child {
padding-bottom: 0;
}
/* line 113, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs > section.active > .content, .section-container.tabs > .section.active > .content {
display: block;
}
/* line 114, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs > section.active > .title, .section-container.tabs > .section.active > .title {
background: white;
}
/* line 115, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs > section.active > .title a, .section-container.tabs > .section.active > .title a {
color: #333333;
}
/* line 139, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs > section > .title, .section-container.tabs > .section > .title {
width: auto;
border: solid 1px #cccccc;
border-right: 0;
border-bottom: 0;
position: absolute;
top: 0;
z-index: 1;
}
/* line 148, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs > section > .title a, .section-container.tabs > .section > .title a {
width: 100%;
}
/* line 150, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs > section:last-child .title, .section-container.tabs > .section:last-child .title {
border-right: solid 1px #cccccc;
}
/* line 152, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs > section .content, .section-container.tabs > .section .content {
border: solid 1px #cccccc;
position: absolute;
z-index: 10;
display: none;
top: -1px;
}
/* line 161, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs > section.active > .title, .section-container.tabs > .section.active > .title {
z-index: 11;
border-bottom: 0;
background-color: white;
}
/* line 166, src/foundation/scss/foundation/components/_section.scss */
.section-container.tabs > section.active > .content, .section-container.tabs > .section.active > .content {
position: relative;
}
@media only screen and (min-width: 768px) {
/* line 289, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto {
border: 0;
position: relative;
}
/* line 293, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto > section, .section-container.auto > .section {
border: 0;
position: static;
}
/* line 87, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto > section > .title, .section-container.auto > .section > .title {
background-color: #efefef;
cursor: pointer;
margin-bottom: 0;
}
/* line 92, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto > section > .title a, .section-container.auto > .section > .title a {
padding: 0.9375em;
display: inline-block;
color: #333333;
font-size: 0.875em;
white-space: nowrap;
}
/* line 99, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto > section > .title:hover, .section-container.auto > .section > .title:hover {
background-color: #e2e2e2;
}
/* line 102, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto > section .content, .section-container.auto > .section .content {
display: none;
padding: 0.9375em;
background-color: white;
}
/* line 107, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto > section .content > *:last-child, .section-container.auto > .section .content > *:last-child {
margin-bottom: 0;
}
/* line 108, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto > section .content > *:first-child, .section-container.auto > .section .content > *:first-child {
padding-top: 0;
}
/* line 109, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto > section .content > *:last-child, .section-container.auto > .section .content > *:last-child {
padding-bottom: 0;
}
/* line 113, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto > section.active > .content, .section-container.auto > .section.active > .content {
display: block;
}
/* line 114, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto > section.active > .title, .section-container.auto > .section.active > .title {
background: white;
}
/* line 115, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto > section.active > .title a, .section-container.auto > .section.active > .title a {
color: #333333;
}
/* line 139, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto > section > .title, .section-container.auto > .section > .title {
width: auto;
border: solid 1px #cccccc;
border-right: 0;
border-bottom: 0;
position: absolute;
top: 0;
z-index: 1;
}
/* line 148, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto > section > .title a, .section-container.auto > .section > .title a {
width: 100%;
}
/* line 150, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto > section:last-child .title, .section-container.auto > .section:last-child .title {
border-right: solid 1px #cccccc;
}
/* line 152, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto > section .content, .section-container.auto > .section .content {
border: solid 1px #cccccc;
position: absolute;
z-index: 10;
display: none;
top: -1px;
}
/* line 161, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto > section.active > .title, .section-container.auto > .section.active > .title {
z-index: 11;
border-bottom: 0;
background-color: white;
}
/* line 166, src/foundation/scss/foundation/components/_section.scss */
.section-container.auto > section.active > .content, .section-container.auto > .section.active > .content {
position: relative;
}
/* line 295, src/foundation/scss/foundation/components/_section.scss */
.section-container.accordion .section {
padding-top: 0 !important;
}
/* line 299, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-tabs {
border: 1px solid #cccccc;
position: relative;
}
/* line 303, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-tabs section,
.section-container.vertical-tabs .section {
padding-top: 0 !important;
border: 0;
position: static;
}
/* line 87, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-tabs section > .title,
.section-container.vertical-tabs .section > .title {
background-color: #efefef;
cursor: pointer;
margin-bottom: 0;
}
/* line 92, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-tabs section > .title a,
.section-container.vertical-tabs .section > .title a {
padding: 0.9375em;
display: inline-block;
color: #333333;
font-size: 0.875em;
white-space: nowrap;
}
/* line 99, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-tabs section > .title:hover,
.section-container.vertical-tabs .section > .title:hover {
background-color: #e2e2e2;
}
/* line 102, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-tabs section .content,
.section-container.vertical-tabs .section .content {
display: none;
padding: 0.9375em;
background-color: white;
}
/* line 107, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-tabs section .content > *:last-child,
.section-container.vertical-tabs .section .content > *:last-child {
margin-bottom: 0;
}
/* line 108, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-tabs section .content > *:first-child,
.section-container.vertical-tabs .section .content > *:first-child {
padding-top: 0;
}
/* line 109, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-tabs section .content > *:last-child,
.section-container.vertical-tabs .section .content > *:last-child {
padding-bottom: 0;
}
/* line 113, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-tabs section.active > .content,
.section-container.vertical-tabs .section.active > .content {
display: block;
}
/* line 114, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-tabs section.active > .title,
.section-container.vertical-tabs .section.active > .title {
background: #d5d5d5;
}
/* line 115, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-tabs section.active > .title a,
.section-container.vertical-tabs .section.active > .title a {
color: #333333;
}
/* line 176, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-tabs section > .title,
.section-container.vertical-tabs .section > .title {
position: absolute;
border-top: solid 1px #cccccc;
width: 12.5em;
}
/* line 181, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-tabs section:first-child .title,
.section-container.vertical-tabs .section:first-child .title {
border-top: 0;
}
/* line 183, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-tabs section .content,
.section-container.vertical-tabs .section .content {
display: block;
position: relative;
left: 12.5em;
border-left: solid 1px #cccccc;
z-index: 10;
}
/* line 194, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-tabs section.active > .title,
.section-container.vertical-tabs .section.active > .title {
background-color: #d5d5d5;
width: 12.5625em;
border-right: solid 0 transparent;
z-index: 11;
}
/* line 200, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-tabs section.active:last-child .title,
.section-container.vertical-tabs .section.active:last-child .title {
border-bottom: 0;
}
/* line 306, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-nav {
border: 0;
position: relative;
}
/* line 310, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-nav > section, .section-container.vertical-nav > .section {
padding-top: 0 !important;
position: relative;
}
/* line 87, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > .title {
background-color: #efefef;
cursor: pointer;
margin-bottom: 0;
}
/* line 92, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > .title a {
padding: 0.9375em;
display: inline-block;
color: #333333;
font-size: 0.875em;
white-space: nowrap;
}
/* line 99, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-nav > section > .title:hover, .section-container.vertical-nav > .section > .title:hover {
background-color: #e2e2e2;
}
/* line 102, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-nav > section .content, .section-container.vertical-nav > .section .content {
display: none;
padding: 0.9375em;
background-color: white;
}
/* line 107, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-nav > section .content > *:last-child, .section-container.vertical-nav > .section .content > *:last-child {
margin-bottom: 0;
}
/* line 108, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-nav > section .content > *:first-child, .section-container.vertical-nav > .section .content > *:first-child {
padding-top: 0;
}
/* line 109, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-nav > section .content > *:last-child, .section-container.vertical-nav > .section .content > *:last-child {
padding-bottom: 0;
}
/* line 113, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-nav > section.active > .content, .section-container.vertical-nav > .section.active > .content {
display: block;
}
/* line 114, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-nav > section.active > .title, .section-container.vertical-nav > .section.active > .title {
background: #d5d5d5;
}
/* line 115, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-nav > section.active > .title a, .section-container.vertical-nav > .section.active > .title a {
color: #333333;
}
/* line 209, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > .title {
border-top: none;
border: solid 1px #cccccc;
}
/* line 213, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > .title a {
display: block;
width: 100%;
}
/* line 218, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-nav > section .content, .section-container.vertical-nav > .section .content {
display: none;
}
/* line 219, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-nav > section:first-child .title, .section-container.vertical-nav > .section:first-child .title {
border-bottom: none;
}
/* line 222, src/foundation/scss/foundation/components/_section.scss */
.section-container.vertical-nav > section.active > .content, .section-container.vertical-nav > .section.active > .content {
display: block;
position: absolute;
left: 100%;
top: 0px;
z-index: 999;
min-width: 12.5em;
border: solid 1px #cccccc;
}
/* line 313, src/foundation/scss/foundation/components/_section.scss */
.section-container.horizontal-nav {
position: relative;
background: #efefef;
border: 1px solid #cccccc;
}
/* line 317, src/foundation/scss/foundation/components/_section.scss */
.section-container.horizontal-nav > section, .section-container.horizontal-nav > .section {
padding-top: 0;
border: 0;
position: static;
}
/* line 87, src/foundation/scss/foundation/components/_section.scss */
.section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > .title {
background-color: #efefef;
cursor: pointer;
margin-bottom: 0;
}
/* line 92, src/foundation/scss/foundation/components/_section.scss */
.section-container.horizontal-nav > section > .title a, .section-container.horizontal-nav > .section > .title a {
padding: 0.9375em;
display: inline-block;
color: #333333;
font-size: 0.875em;
white-space: nowrap;
}
/* line 99, src/foundation/scss/foundation/components/_section.scss */
.section-container.horizontal-nav > section > .title:hover, .section-container.horizontal-nav > .section > .title:hover {
background-color: #e2e2e2;
}
/* line 102, src/foundation/scss/foundation/components/_section.scss */
.section-container.horizontal-nav > section .content, .section-container.horizontal-nav > .section .content {
display: none;
padding: 0.9375em;
background-color: white;
}
/* line 107, src/foundation/scss/foundation/components/_section.scss */
.section-container.horizontal-nav > section .content > *:last-child, .section-container.horizontal-nav > .section .content > *:last-child {
margin-bottom: 0;
}
/* line 108, src/foundation/scss/foundation/components/_section.scss */
.section-container.horizontal-nav > section .content > *:first-child, .section-container.horizontal-nav > .section .content > *:first-child {
padding-top: 0;
}
/* line 109, src/foundation/scss/foundation/components/_section.scss */
.section-container.horizontal-nav > section .content > *:last-child, .section-container.horizontal-nav > .section .content > *:last-child {
padding-bottom: 0;
}
/* line 113, src/foundation/scss/foundation/components/_section.scss */
.section-container.horizontal-nav > section.active > .content, .section-container.horizontal-nav > .section.active > .content {
display: block;
}
/* line 114, src/foundation/scss/foundation/components/_section.scss */
.section-container.horizontal-nav > section.active > .title, .section-container.horizontal-nav > .section.active > .title {
background: #d5d5d5;
}
/* line 115, src/foundation/scss/foundation/components/_section.scss */
.section-container.horizontal-nav > section.active > .title a, .section-container.horizontal-nav > .section.active > .title a {
color: #333333;
}
/* line 240, src/foundation/scss/foundation/components/_section.scss */
.section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > .title {
width: auto;
border: solid 1px #cccccc;
border-left: 0;
top: -1px;
position: absolute;
z-index: 1;
}
/* line 248, src/foundation/scss/foundation/components/_section.scss */
.section-container.horizontal-nav > section > .title a, .section-container.horizontal-nav > .section > .title a {
width: 100%;
}
/* line 251, src/foundation/scss/foundation/components/_section.scss */
.section-container.horizontal-nav > section .content, .section-container.horizontal-nav > .section .content {
display: none;
}
/* line 254, src/foundation/scss/foundation/components/_section.scss */
.section-container.horizontal-nav > section.active > .content, .section-container.horizontal-nav > .section.active > .content {
display: block;
position: absolute;
z-index: 999;
left: 0;
top: -2px;
min-width: 12.5em;
border: solid 1px #cccccc;
}
}
/* line 328, src/foundation/scss/foundation/components/_section.scss */
.no-js .section-container.auto, .no-js .section-container.accordion, .no-js .section-container.tabs, .no-js .section-container.vertical-tabs, .no-js .section-container.vertical-nav, .no-js .section-container.horizontal-nav {
width: 100%;
display: block;
margin-bottom: 1.25em;
border: 1px solid #cccccc;
border-top: none;
}
/* line 332, src/foundation/scss/foundation/components/_section.scss */
.no-js .section-container.auto > section, .no-js .section-container.auto > .section, .no-js .section-container.accordion > section, .no-js .section-container.accordion > .section, .no-js .section-container.tabs > section, .no-js .section-container.tabs > .section, .no-js .section-container.vertical-tabs > section, .no-js .section-container.vertical-tabs > .section, .no-js .section-container.vertical-nav > section, .no-js .section-container.vertical-nav > .section, .no-js .section-container.horizontal-nav > section, .no-js .section-container.horizontal-nav > .section {
position: relative;
}
/* line 87, src/foundation/scss/foundation/components/_section.scss */
.no-js .section-container.auto > section > .title, .no-js .section-container.auto > .section > .title, .no-js .section-container.accordion > section > .title, .no-js .section-container.accordion > .section > .title, .no-js .section-container.tabs > section > .title, .no-js .section-container.tabs > .section > .title, .no-js .section-container.vertical-tabs > section > .title, .no-js .section-container.vertical-tabs > .section > .title, .no-js .section-container.vertical-nav > section > .title, .no-js .section-container.vertical-nav > .section > .title, .no-js .section-container.horizontal-nav > section > .title, .no-js .section-container.horizontal-nav > .section > .title {
background-color: #efefef;
cursor: pointer;
margin-bottom: 0;
}
/* line 92, src/foundation/scss/foundation/components/_section.scss */
.no-js .section-container.auto > section > .title a, .no-js .section-container.auto > .section > .title a, .no-js .section-container.accordion > section > .title a, .no-js .section-container.accordion > .section > .title a, .no-js .section-container.tabs > section > .title a, .no-js .section-container.tabs > .section > .title a, .no-js .section-container.vertical-tabs > section > .title a, .no-js .section-container.vertical-tabs > .section > .title a, .no-js .section-container.vertical-nav > section > .title a, .no-js .section-container.vertical-nav > .section > .title a, .no-js .section-container.horizontal-nav > section > .title a, .no-js .section-container.horizontal-nav > .section > .title a {
padding: 0.9375em;
display: inline-block;
color: #333333;
font-size: 0.875em;
white-space: nowrap;
}
/* line 99, src/foundation/scss/foundation/components/_section.scss */
.no-js .section-container.auto > section > .title:hover, .no-js .section-container.auto > .section > .title:hover, .no-js .section-container.accordion > section > .title:hover, .no-js .section-container.accordion > .section > .title:hover, .no-js .section-container.tabs > section > .title:hover, .no-js .section-container.tabs > .section > .title:hover, .no-js .section-container.vertical-tabs > section > .title:hover, .no-js .section-container.vertical-tabs > .section > .title:hover, .no-js .section-container.vertical-nav > section > .title:hover, .no-js .section-container.vertical-nav > .section > .title:hover, .no-js .section-container.horizontal-nav > section > .title:hover, .no-js .section-container.horizontal-nav > .section > .title:hover {
background-color: #e2e2e2;
}
/* line 102, src/foundation/scss/foundation/components/_section.scss */
.no-js .section-container.auto > section .content, .no-js .section-container.auto > .section .content, .no-js .section-container.accordion > section .content, .no-js .section-container.accordion > .section .content, .no-js .section-container.tabs > section .content, .no-js .section-container.tabs > .section .content, .no-js .section-container.vertical-tabs > section .content, .no-js .section-container.vertical-tabs > .section .content, .no-js .section-container.vertical-nav > section .content, .no-js .section-container.vertical-nav > .section .content, .no-js .section-container.horizontal-nav > section .content, .no-js .section-container.horizontal-nav > .section .content {
display: none;
padding: 0.9375em;
background-color: white;
}
/* line 107, src/foundation/scss/foundation/components/_section.scss */
.no-js .section-container.auto > section .content > *:last-child, .no-js .section-container.auto > .section .content > *:last-child, .no-js .section-container.accordion > section .content > *:last-child, .no-js .section-container.accordion > .section .content > *:last-child, .no-js .section-container.tabs > section .content > *:last-child, .no-js .section-container.tabs > .section .content > *:last-child, .no-js .section-container.vertical-tabs > section .content > *:last-child, .no-js .section-container.vertical-tabs > .section .content > *:last-child, .no-js .section-container.vertical-nav > section .content > *:last-child, .no-js .section-container.vertical-nav > .section .content > *:last-child, .no-js .section-container.horizontal-nav > section .content > *:last-child, .no-js .section-container.horizontal-nav > .section .content > *:last-child {
margin-bottom: 0;
}
/* line 108, src/foundation/scss/foundation/components/_section.scss */
.no-js .section-container.auto > section .content > *:first-child, .no-js .section-container.auto > .section .content > *:first-child, .no-js .section-container.accordion > section .content > *:first-child, .no-js .section-container.accordion > .section .content > *:first-child, .no-js .section-container.tabs > section .content > *:first-child, .no-js .section-container.tabs > .section .content > *:first-child, .no-js .section-container.vertical-tabs > section .content > *:first-child, .no-js .section-container.vertical-tabs > .section .content > *:first-child, .no-js .section-container.vertical-nav > section .content > *:first-child, .no-js .section-container.vertical-nav > .section .content > *:first-child, .no-js .section-container.horizontal-nav > section .content > *:first-child, .no-js .section-container.horizontal-nav > .section .content > *:first-child {
padding-top: 0;
}
/* line 109, src/foundation/scss/foundation/components/_section.scss */
.no-js .section-container.auto > section .content > *:last-child, .no-js .section-container.auto > .section .content > *:last-child, .no-js .section-container.accordion > section .content > *:last-child, .no-js .section-container.accordion > .section .content > *:last-child, .no-js .section-container.tabs > section .content > *:last-child, .no-js .section-container.tabs > .section .content > *:last-child, .no-js .section-container.vertical-tabs > section .content > *:last-child, .no-js .section-container.vertical-tabs > .section .content > *:last-child, .no-js .section-container.vertical-nav > section .content > *:last-child, .no-js .section-container.vertical-nav > .section .content > *:last-child, .no-js .section-container.horizontal-nav > section .content > *:last-child, .no-js .section-container.horizontal-nav > .section .content > *:last-child {
padding-bottom: 0;
}
/* line 113, src/foundation/scss/foundation/components/_section.scss */
.no-js .section-container.auto > section.active > .content, .no-js .section-container.auto > .section.active > .content, .no-js .section-container.accordion > section.active > .content, .no-js .section-container.accordion > .section.active > .content, .no-js .section-container.tabs > section.active > .content, .no-js .section-container.tabs > .section.active > .content, .no-js .section-container.vertical-tabs > section.active > .content, .no-js .section-container.vertical-tabs > .section.active > .content, .no-js .section-container.vertical-nav > section.active > .content, .no-js .section-container.vertical-nav > .section.active > .content, .no-js .section-container.horizontal-nav > section.active > .content, .no-js .section-container.horizontal-nav > .section.active > .content {
display: block;
}
/* line 114, src/foundation/scss/foundation/components/_section.scss */
.no-js .section-container.auto > section.active > .title, .no-js .section-container.auto > .section.active > .title, .no-js .section-container.accordion > section.active > .title, .no-js .section-container.accordion > .section.active > .title, .no-js .section-container.tabs > section.active > .title, .no-js .section-container.tabs > .section.active > .title, .no-js .section-container.vertical-tabs > section.active > .title, .no-js .section-container.vertical-tabs > .section.active > .title, .no-js .section-container.vertical-nav > section.active > .title, .no-js .section-container.vertical-nav > .section.active > .title, .no-js .section-container.horizontal-nav > section.active > .title, .no-js .section-container.horizontal-nav > .section.active > .title {
background: #d5d5d5;
}
/* line 115, src/foundation/scss/foundation/components/_section.scss */
.no-js .section-container.auto > section.active > .title a, .no-js .section-container.auto > .section.active > .title a, .no-js .section-container.accordion > section.active > .title a, .no-js .section-container.accordion > .section.active > .title a, .no-js .section-container.tabs > section.active > .title a, .no-js .section-container.tabs > .section.active > .title a, .no-js .section-container.vertical-tabs > section.active > .title a, .no-js .section-container.vertical-tabs > .section.active > .title a, .no-js .section-container.vertical-nav > section.active > .title a, .no-js .section-container.vertical-nav > .section.active > .title a, .no-js .section-container.horizontal-nav > section.active > .title a, .no-js .section-container.horizontal-nav > .section.active > .title a {
color: #333333;
}
/* line 124, src/foundation/scss/foundation/components/_section.scss */
.no-js .section-container.auto > section > .title, .no-js .section-container.auto > .section > .title, .no-js .section-container.accordion > section > .title, .no-js .section-container.accordion > .section > .title, .no-js .section-container.tabs > section > .title, .no-js .section-container.tabs > .section > .title, .no-js .section-container.vertical-tabs > section > .title, .no-js .section-container.vertical-tabs > .section > .title, .no-js .section-container.vertical-nav > section > .title, .no-js .section-container.vertical-nav > .section > .title, .no-js .section-container.horizontal-nav > section > .title, .no-js .section-container.horizontal-nav > .section > .title {
top: 0;
width: 100%;
margin: 0;
border-top: solid 1px #cccccc;
}
/* line 130, src/foundation/scss/foundation/components/_section.scss */
.no-js .section-container.auto > section > .title a, .no-js .section-container.auto > .section > .title a, .no-js .section-container.accordion > section > .title a, .no-js .section-container.accordion > .section > .title a, .no-js .section-container.tabs > section > .title a, .no-js .section-container.tabs > .section > .title a, .no-js .section-container.vertical-tabs > section > .title a, .no-js .section-container.vertical-tabs > .section > .title a, .no-js .section-container.vertical-nav > section > .title a, .no-js .section-container.vertical-nav > .section > .title a, .no-js .section-container.horizontal-nav > section > .title a, .no-js .section-container.horizontal-nav > .section > .title a {
width: 100%;
}
/* line 333, src/foundation/scss/foundation/components/_section.scss */
.no-js .section-container.auto > section .title, .no-js .section-container.auto > .section .title, .no-js .section-container.accordion > section .title, .no-js .section-container.accordion > .section .title, .no-js .section-container.tabs > section .title, .no-js .section-container.tabs > .section .title, .no-js .section-container.vertical-tabs > section .title, .no-js .section-container.vertical-tabs > .section .title, .no-js .section-container.vertical-nav > section .title, .no-js .section-container.vertical-nav > .section .title, .no-js .section-container.horizontal-nav > section .title, .no-js .section-container.horizontal-nav > .section .title {
position: static;
width: 100%;
border-left: 0;
border-right: 0;
}
/* line 340, src/foundation/scss/foundation/components/_section.scss */
.no-js .section-container.auto > section .content, .no-js .section-container.auto > .section .content, .no-js .section-container.accordion > section .content, .no-js .section-container.accordion > .section .content, .no-js .section-container.tabs > section .content, .no-js .section-container.tabs > .section .content, .no-js .section-container.vertical-tabs > section .content, .no-js .section-container.vertical-tabs > .section .content, .no-js .section-container.vertical-nav > section .content, .no-js .section-container.vertical-nav > .section .content, .no-js .section-container.horizontal-nav > section .content, .no-js .section-container.horizontal-nav > .section .content {
position: static;
display: block;
width: 100%;
border-left: 0;
border-right: 0;
border-bottom: 0;
}
/* Wrapped around .top-bar to contain to grid width */
/* line 67, src/foundation/scss/foundation/components/_top-bar.scss */
.contain-to-grid {
width: 100%;
background: #019934;
}
/* line 71, src/foundation/scss/foundation/components/_top-bar.scss */
.contain-to-grid .top-bar {
margin-bottom: 0;
}
/* line 75, src/foundation/scss/foundation/components/_top-bar.scss */
.fixed {
width: 100%;
left: 0;
position: fixed;
top: 0;
z-index: 99;
}
/* line 83, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar {
overflow: hidden;
height: 65px;
line-height: 65px;
position: relative;
background: #019934;
margin-bottom: 1.875em;
}
/* line 92, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar ul {
margin-bottom: 0;
list-style: none;
}
/* line 97, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar .row {
max-width: none;
}
/* line 100, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar form,
.top-bar input {
margin-bottom: 0;
}
/* line 102, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar input {
height: 2.45em;
}
/* line 104, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar .button {
padding-top: .5em;
padding-bottom: .5em;
margin-bottom: 0;
}
/* line 107, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar .title-area {
position: relative;
margin: 0;
}
/* line 112, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar .name {
height: 65px;
margin: 0;
font-size: 16px;
}
/* line 117, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar .name h1 {
line-height: 65px;
font-size: 1.0625em;
margin: 0;
}
/* line 121, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar .name h1 a {
font-weight: bold;
color: white;
width: 50%;
display: block;
padding: 0 21.66667px;
}
/* line 132, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar .toggle-topbar {
position: absolute;
right: 0;
top: 0;
}
/* line 137, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar .toggle-topbar a {
color: white;
text-transform: uppercase;
font-size: 0.8125em;
font-weight: bold;
position: relative;
display: block;
padding: 0 21.66667px;
height: 65px;
line-height: 65px;
}
/* line 150, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar .toggle-topbar.menu-icon {
right: 21.66667px;
top: 50%;
margin-top: -16px;
padding-left: 40px;
}
/* line 156, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar .toggle-topbar.menu-icon a {
text-indent: -48px;
width: 34px;
height: 34px;
line-height: 33px;
padding: 0;
color: white;
}
/* line 164, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar .toggle-topbar.menu-icon a span {
position: absolute;
right: 0;
display: block;
width: 16px;
height: 0;
-webkit-box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white;
box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white;
}
/* line 185, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar.expanded {
height: auto;
background: transparent;
}
/* line 189, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar.expanded .title-area {
background: #019934;
}
/* line 192, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar.expanded .toggle-topbar a {
color: #888888;
}
/* line 193, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar.expanded .toggle-topbar a span {
-webkit-box-shadow: 0 10px 0 1px #888888, 0 16px 0 1px #888888, 0 22px 0 1px #888888;
box-shadow: 0 10px 0 1px #888888, 0 16px 0 1px #888888, 0 22px 0 1px #888888;
}
/* line 211, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section {
left: 0;
position: relative;
width: auto;
-webkit-transition: left 300ms ease-out;
-moz-transition: left 300ms ease-out;
transition: left 300ms ease-out;
}
/* line 217, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section ul {
width: 100%;
height: auto;
display: block;
background: #222222;
font-size: 16px;
margin: 0;
}
/* line 227, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .divider,
.top-bar-section [role="separator"] {
border-bottom: solid 1px #01cc45;
border-top: solid 1px #016623;
clear: both;
height: 1px;
width: 100%;
}
/* line 236, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a {
display: block;
width: 100%;
color: white;
padding: 12px 0 12px 0;
padding-left: 21.66667px;
font-size: 0.8125em;
font-weight: bold;
background: #222222;
}
/* line 246, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a.hover {
background: #018a2f;
color: white;
}
/* line 252, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a.button {
background: #2ba6cb;
font-size: 0.8125em;
}
/* line 255, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a.button.hover {
background: #2284a1;
}
/* line 259, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a.button.secondary {
background: #e9e9e9;
}
/* line 261, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a.button.secondary.hover {
background: #d0d0d0;
}
/* line 265, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a.button.success {
background: #5da423;
}
/* line 267, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a.button.success.hover {
background: #457a1a;
}
/* line 271, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a.button.alert {
background: #c60f13;
}
/* line 273, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a.button.alert.hover {
background: #970b0e;
}
/* line 281, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li.active > a {
background: #018a2f;
color: white;
}
/* line 288, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .has-form {
padding: 21.66667px;
}
/* line 291, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .has-dropdown {
position: relative;
}
/* line 295, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .has-dropdown > a:after {
content: "";
display: block;
width: 0;
height: 0;
border: inset 5px;
border-color: transparent transparent transparent rgba(255, 255, 255, 0.5);
border-left-style: solid;
margin-right: 21.66667px;
margin-top: -4.5px;
position: absolute;
top: 50%;
right: 0;
}
/* line 305, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .has-dropdown.moved {
position: static;
}
/* line 306, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .has-dropdown.moved > .dropdown {
visibility: visible;
}
/* line 313, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .dropdown {
position: absolute;
left: 100%;
top: 0;
visibility: hidden;
z-index: 99;
}
/* line 320, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .dropdown li {
width: 100%;
height: auto;
}
/* line 324, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .dropdown li a {
font-weight: normal;
padding: 8px 21.66667px;
}
/* line 329, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .dropdown li.title h5 {
margin-bottom: 0;
}
/* line 330, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .dropdown li.title h5 a {
color: white;
line-height: 32.5px;
display: block;
}
/* line 338, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .dropdown label {
padding: 8px 21.66667px 2px;
margin-bottom: 0;
text-transform: uppercase;
color: #555555;
font-weight: bold;
font-size: 0.625em;
}
/* line 350, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-js-breakpoint {
width: 58.75em !important;
visibility: hidden;
}
/* line 354, src/foundation/scss/foundation/components/_top-bar.scss */
.js-generated {
display: block;
}
@media only screen and (min-width: 58.75em) {
/* line 359, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar {
background: #019934;
*zoom: 1;
overflow: visible;
}
/* line 121, src/foundation/scss/foundation/components/_global.scss */
.top-bar:before, .top-bar:after {
content: " ";
display: table;
}
/* line 122, src/foundation/scss/foundation/components/_global.scss */
.top-bar:after {
clear: both;
}
/* line 364, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar .toggle-topbar {
display: none;
}
/* line 366, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar .title-area {
float: left;
}
/* line 367, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar .name h1 a {
width: auto;
}
/* line 370, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar input,
.top-bar .button {
line-height: 2em;
font-size: 0.875em;
height: 2em;
padding: 0 10px;
position: relative;
top: 8px;
}
/* line 379, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar.expanded {
background: #019934;
}
/* line 382, src/foundation/scss/foundation/components/_top-bar.scss */
.contain-to-grid .top-bar {
max-width: 62.5em;
margin: 0 auto;
}
/* line 387, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section {
-webkit-transition: none 0 0;
-moz-transition: none 0 0;
transition: none 0 0;
left: 0 !important;
}
/* line 391, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section ul {
width: auto;
height: auto !important;
display: inline;
}
/* line 396, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li {
float: left;
}
/* line 398, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li .js-generated {
display: none;
}
/* line 403, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section li a:not(.button) {
padding: 0 21.66667px;
line-height: 65px;
background: #019934;
}
/* line 407, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section li a:not(.button).hover {
background: black;
}
/* line 412, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .has-dropdown > a {
padding-right: 41.66667px !important;
}
/* line 415, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .has-dropdown > a:after {
content: "";
display: block;
width: 0;
height: 0;
border: inset 5px;
border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent;
border-top-style: solid;
margin-top: -2.5px;
top: 32.5px;
}
/* line 422, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .has-dropdown.moved {
position: relative;
}
/* line 423, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .has-dropdown.moved > .dropdown {
visibility: hidden;
}
/* line 427, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .has-dropdown.hover > .dropdown {
visibility: visible;
}
/* line 434, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after {
border: none;
content: "\00bb";
margin-top: -16px;
right: 5px;
}
/* line 445, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .dropdown {
left: 0;
top: auto;
background: transparent;
min-width: 100%;
}
/* line 452, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .dropdown li a {
color: white;
line-height: 1;
white-space: nowrap;
padding: 7px 21.66667px;
background: #01b23d;
}
/* line 460, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .dropdown li label {
white-space: nowrap;
background: #01b23d;
}
/* line 466, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .dropdown li .dropdown {
left: 100%;
top: 0;
}
/* line 474, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section > ul > .divider, .top-bar-section > ul > [role="separator"] {
border-bottom: none;
border-top: none;
border-right: solid 1px #01cc45;
border-left: solid 1px #016623;
clear: none;
height: 65px;
width: 0px;
}
/* line 484, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section .has-form {
background: #019934;
padding: 0 21.66667px;
height: 65px;
}
/* line 492, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section ul.right li .dropdown {
left: auto;
right: 0;
}
/* line 496, src/foundation/scss/foundation/components/_top-bar.scss */
.top-bar-section ul.right li .dropdown li .dropdown {
right: 100%;
}
}
@-webkit-keyframes rotate {
/* line 36, src/foundation/scss/foundation/components/_orbit.scss */
from {
-webkit-transform: rotate(0deg);
}
/* line 37, src/foundation/scss/foundation/components/_orbit.scss */
to {
-webkit-transform: rotate(360deg);
}
}
@-moz-keyframes rotate {
/* line 40, src/foundation/scss/foundation/components/_orbit.scss */
from {
-webkit-transform: rotate(0deg);
}
/* line 41, src/foundation/scss/foundation/components/_orbit.scss */
to {
-webkit-transform: rotate(360deg);
}
}
@-o-keyframes rotate {
/* line 44, src/foundation/scss/foundation/components/_orbit.scss */
from {
-webkit-transform: rotate(0deg);
}
/* line 45, src/foundation/scss/foundation/components/_orbit.scss */
to {
-webkit-transform: rotate(360deg);
}
}
@keyframes rotate {
/* line 49, src/foundation/scss/foundation/components/_orbit.scss */
from {
-webkit-transform: rotate(0deg);
}
/* line 50, src/foundation/scss/foundation/components/_orbit.scss */
to {
-webkit-transform: rotate(360deg);
}
}
/* Orbit Graceful Loading */
/* line 54, src/foundation/scss/foundation/components/_orbit.scss */
.slideshow-wrapper {
position: relative;
}
/* line 57, src/foundation/scss/foundation/components/_orbit.scss */
.slideshow-wrapper ul {
list-style-type: none;
margin: 0;
}
/* line 64, src/foundation/scss/foundation/components/_orbit.scss */
.slideshow-wrapper ul li,
.slideshow-wrapper ul li .orbit-caption {
display: none;
}
/* line 67, src/foundation/scss/foundation/components/_orbit.scss */
.slideshow-wrapper ul li:first-child {
display: block;
}
/* line 70, src/foundation/scss/foundation/components/_orbit.scss */
.slideshow-wrapper .orbit-container {
background-color: transparent;
}
/* line 73, src/foundation/scss/foundation/components/_orbit.scss */
.slideshow-wrapper .orbit-container li {
display: block;
}
/* line 75, src/foundation/scss/foundation/components/_orbit.scss */
.slideshow-wrapper .orbit-container li .orbit-caption {
display: block;
}
/* line 81, src/foundation/scss/foundation/components/_orbit.scss */
.preloader {
display: block;
width: 40px;
height: 40px;
position: absolute;
top: 50%;
left: 50%;
margin-top: -20px;
margin-left: -20px;
border: solid 3px;
border-color: #555 #fff;
-webkit-border-radius: 1000px;
border-radius: 1000px;
-webkit-animation-name: rotate;
-webkit-animation-duration: 1.5s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: rotate;
-moz-animation-duration: 1.5s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-o-animation-name: rotate;
-o-animation-duration: 1.5s;
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
animation-name: rotate;
animation-duration: 1.5s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
/* line 113, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container {
overflow: hidden;
width: 100%;
position: relative;
background: whitesmoke;
}
/* line 119, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-slides-container {
list-style: none;
margin: 0;
padding: 0;
position: relative;
}
/* line 125, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-slides-container img {
display: block;
}
/* line 127, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-slides-container > * {
position: relative;
float: left;
height: auto;
}
/* line 132, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-slides-container > * .orbit-caption {
position: absolute;
bottom: 0;
background-color: black;
background-color: rgba(0, 0, 0, 0.6);
color: white;
width: 100%;
padding: 10px 14px;
font-size: 0.875em;
}
/* line 145, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-slide-number {
position: absolute;
top: 10px;
left: 10px;
font-size: 12px;
color: white;
background: rgba(0, 0, 0, 0);
}
/* line 150, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-slide-number span {
font-weight: 700;
padding: 0.3125em;
}
/* line 155, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-timer {
position: absolute;
top: 10px;
right: 10px;
height: 6px;
width: 100px;
}
/* line 161, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-timer .orbit-progress {
height: 100%;
background-color: black;
background-color: rgba(0, 0, 0, 0.6);
display: block;
width: 0%;
}
/* line 169, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-timer > span {
display: none;
position: absolute;
top: 10px;
right: 0px;
width: 11px;
height: 14px;
border: solid 4px #000;
border-top: none;
border-bottom: none;
}
/* line 182, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-timer.paused > span {
right: -6px;
top: 9px;
width: 11px;
height: 14px;
border: inset 8px;
border-right-style: solid;
border-color: transparent transparent transparent #000;
}
/* line 194, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container:hover .orbit-timer > span {
display: block;
}
/* line 198, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-prev,
.orbit-container .orbit-next {
position: absolute;
top: 50%;
margin-top: -25px;
background-color: black;
background-color: rgba(0, 0, 0, 0.6);
width: 50px;
height: 60px;
line-height: 50px;
color: white;
text-indent: -9999px !important;
}
/* line 210, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-prev > span,
.orbit-container .orbit-next > span {
position: absolute;
top: 50%;
margin-top: -16px;
display: block;
width: 0;
height: 0;
border: inset 16px;
}
/* line 220, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-prev {
left: 0;
}
/* line 221, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-prev > span {
border-right-style: solid;
border-color: transparent;
border-right-color: #fff;
}
/* line 226, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-prev:hover > span {
border-right-color: #ccc;
}
/* line 230, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-next {
right: 0;
}
/* line 231, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-next > span {
border-color: transparent;
border-left-style: solid;
border-left-color: #fff;
left: 50%;
margin-left: -8px;
}
/* line 238, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-next:hover > span {
border-left-color: #ccc;
}
/* line 244, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-bullets {
margin: 0 auto 30px auto;
overflow: hidden;
position: relative;
top: 10px;
}
/* line 250, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-bullets li {
display: block;
width: 18px;
height: 18px;
background: #999999;
float: left;
margin-right: 6px;
border: solid 2px #222222;
-webkit-border-radius: 1000px;
border-radius: 1000px;
}
/* line 260, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-bullets li.active {
background: #222222;
}
/* line 264, src/foundation/scss/foundation/components/_orbit.scss */
.orbit-bullets li:last-child {
margin-right: 0;
}
/* line 271, src/foundation/scss/foundation/components/_orbit.scss */
.touch .orbit-container .orbit-prev,
.touch .orbit-container .orbit-next {
display: none;
}
/* line 274, src/foundation/scss/foundation/components/_orbit.scss */
.touch .orbit-bullets {
display: none;
}
@media only screen and (min-width: 768px) {
/* line 283, src/foundation/scss/foundation/components/_orbit.scss */
.touch .orbit-container .orbit-prev,
.touch .orbit-container .orbit-next {
display: inherit;
}
/* line 286, src/foundation/scss/foundation/components/_orbit.scss */
.touch .orbit-bullets {
display: block;
}
}
/* line 109, src/foundation/scss/foundation/components/_reveal.scss */
.reveal-modal-bg {
position: fixed;
height: 100%;
width: 100%;
background: black;
background: rgba(0, 0, 0, 0.45);
z-index: 98;
display: none;
top: 0;
left: 0;
}
/* line 111, src/foundation/scss/foundation/components/_reveal.scss */
.reveal-modal {
visibility: hidden;
display: none;
position: absolute;
left: 50%;
z-index: 99;
height: auto;
margin-left: -40%;
width: 80%;
background-color: white;
padding: 1.25em;
border: solid 1px #666666;
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
top: 50px;
}
/* line 62, src/foundation/scss/foundation/components/_reveal.scss */
.reveal-modal .column,
.reveal-modal .columns {
min-width: 0;
}
/* line 65, src/foundation/scss/foundation/components/_reveal.scss */
.reveal-modal > :first-child {
margin-top: 0;
}
/* line 66, src/foundation/scss/foundation/components/_reveal.scss */
.reveal-modal > :last-child {
margin-bottom: 0;
}
/* line 115, src/foundation/scss/foundation/components/_reveal.scss */
.reveal-modal .close-reveal-modal {
font-size: 1.375em;
line-height: 1;
position: absolute;
top: 0.5em;
right: 0.6875em;
color: #aaaaaa;
font-weight: bold;
cursor: pointer;
}
@media only screen and (min-width: 768px) {
/* line 121, src/foundation/scss/foundation/components/_reveal.scss */
.reveal-modal {
padding: 1.875em;
top: 6.25em;
}
/* line 124, src/foundation/scss/foundation/components/_reveal.scss */
.reveal-modal.tiny {
margin-left: -15%;
width: 30%;
}
/* line 125, src/foundation/scss/foundation/components/_reveal.scss */
.reveal-modal.small {
margin-left: -20%;
width: 40%;
}
/* line 126, src/foundation/scss/foundation/components/_reveal.scss */
.reveal-modal.medium {
margin-left: -30%;
width: 60%;
}
/* line 127, src/foundation/scss/foundation/components/_reveal.scss */
.reveal-modal.large {
margin-left: -35%;
width: 70%;
}
/* line 128, src/foundation/scss/foundation/components/_reveal.scss */
.reveal-modal.xlarge {
margin-left: -47.5%;
width: 95%;
}
}
@media print {
/* line 134, src/foundation/scss/foundation/components/_reveal.scss */
.reveal-modal {
background: #fff !important;
}
}
/* Foundation Joyride */
/* line 41, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-list {
display: none;
}
/* Default styles for the container */
/* line 44, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-tip-guide {
display: none;
position: absolute;
background: black;
color: white;
z-index: 101;
top: 0;
left: 2.5%;
font-family: inherit;
font-weight: normal;
width: 95%;
}
/* line 57, src/foundation/scss/foundation/components/_joyride.scss */
.lt-ie9 .joyride-tip-guide {
max-width: 800px;
left: 50%;
margin-left: -400px;
}
/* line 63, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-content-wrapper {
width: 100%;
padding: 1.125em 1.25em 1.5em;
}
/* line 68, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-content-wrapper .button {
margin-bottom: 0 !important;
}
/* Add a little css triangle pip, older browser just miss out on the fanciness of it */
/* line 73, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-tip-guide .joyride-nub {
display: block;
position: absolute;
left: 22px;
width: 0;
height: 0;
border: inset 14px;
}
/* line 81, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-tip-guide .joyride-nub.top {
border-top-style: solid;
border-color: black;
border-top-color: transparent !important;
border-left-color: transparent !important;
border-right-color: transparent !important;
top: -28px;
}
/* line 89, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-tip-guide .joyride-nub.bottom {
border-bottom-style: solid;
border-color: black !important;
border-bottom-color: transparent !important;
border-left-color: transparent !important;
border-right-color: transparent !important;
bottom: -28px;
}
/* line 98, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-tip-guide .joyride-nub.right {
right: -28px;
}
/* line 99, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-tip-guide .joyride-nub.left {
left: -28px;
}
/* Typography */
/* line 109, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-tip-guide h1,
.joyride-tip-guide h2,
.joyride-tip-guide h3,
.joyride-tip-guide h4,
.joyride-tip-guide h5,
.joyride-tip-guide h6 {
line-height: 1.25;
margin: 0;
font-weight: bold;
color: white;
}
/* line 115, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-tip-guide p {
margin: 0 0 1.125em 0;
font-size: 0.875em;
line-height: 1.3;
}
/* line 121, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-timer-indicator-wrap {
width: 50px;
height: 3px;
border: solid 1px #555555;
position: absolute;
right: 1.0625em;
bottom: 1em;
}
/* line 129, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-timer-indicator {
display: block;
width: 0;
height: inherit;
background: #666666;
}
/* line 136, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-close-tip {
position: absolute;
right: 12px;
top: 10px;
color: #777777 !important;
text-decoration: none;
font-size: 30px;
font-weight: normal;
line-height: .5 !important;
}
/* line 147, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-close-tip:hover, .joyride-close-tip:focus {
color: #eee !important;
}
/* line 150, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-modal-bg {
position: fixed;
height: 100%;
width: 100%;
background: transparent;
background: rgba(0, 0, 0, 0.5);
z-index: 100;
display: none;
top: 0;
left: 0;
cursor: pointer;
}
/* line 163, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-expose-wrapper {
background-color: #ffffff;
position: absolute;
border-radius: 3px;
z-index: 102;
-moz-box-shadow: 0px 0px 30px #ffffff;
-webkit-box-shadow: 0px 0px 15px #ffffff;
box-shadow: 0px 0px 15px #ffffff;
}
/* line 175, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-expose-cover {
background: transparent;
border-radius: 3px;
position: absolute;
z-index: 9999;
top: 0px;
left: 0px;
}
/* Styles for screens that are atleast 768px; */
@media only screen and (min-width: 768px) {
/* line 187, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-tip-guide {
width: 300px;
left: inherit;
}
/* line 189, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-tip-guide .joyride-nub.bottom {
border-color: black !important;
border-bottom-color: transparent !important;
border-left-color: transparent !important;
border-right-color: transparent !important;
bottom: -28px;
}
/* line 196, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-tip-guide .joyride-nub.right {
border-color: black !important;
border-top-color: transparent !important;
border-right-color: transparent !important;
border-bottom-color: transparent !important;
top: 22px;
left: auto;
right: -28px;
}
/* line 204, src/foundation/scss/foundation/components/_joyride.scss */
.joyride-tip-guide .joyride-nub.left {
border-color: black !important;
border-top-color: transparent !important;
border-left-color: transparent !important;
border-bottom-color: transparent !important;
top: 22px;
left: -28px;
right: auto;
}
}
/* Clearing Styles */
/* line 36, src/foundation/scss/foundation/components/_clearing.scss */
[data-clearing] {
*zoom: 1;
margin-bottom: 0;
list-style: none;
}
/* line 121, src/foundation/scss/foundation/components/_global.scss */
[data-clearing]:before, [data-clearing]:after {
content: " ";
display: table;
}
/* line 122, src/foundation/scss/foundation/components/_global.scss */
[data-clearing]:after {
clear: both;
}
/* line 41, src/foundation/scss/foundation/components/_clearing.scss */
[data-clearing] li {
float: left;
margin-right: 10px;
}
/* line 47, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-blackout {
background: #111111;
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 998;
}
/* line 56, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-blackout .clearing-close {
display: block;
}
/* line 59, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-container {
position: relative;
z-index: 998;
height: 100%;
overflow: hidden;
margin: 0;
}
/* line 67, src/foundation/scss/foundation/components/_clearing.scss */
.visible-img {
height: 95%;
position: relative;
}
/* line 71, src/foundation/scss/foundation/components/_clearing.scss */
.visible-img img {
position: absolute;
left: 50%;
top: 50%;
margin-left: -50%;
max-height: 100%;
max-width: 100%;
}
/* line 81, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-caption {
color: white;
line-height: 1.3;
margin-bottom: 0;
text-align: center;
bottom: 0;
background: #111111;
width: 100%;
padding: 10px 30px;
position: absolute;
left: 0;
}
/* line 94, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-close {
z-index: 999;
padding-left: 20px;
padding-top: 10px;
font-size: 40px;
line-height: 1;
color: white;
display: none;
}
/* line 104, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-close:hover, .clearing-close:focus {
color: #ccc;
}
/* line 107, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-assembled .clearing-container {
height: 100%;
}
/* line 108, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-assembled .clearing-container .carousel > ul {
display: none;
}
/* line 112, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-feature li {
display: none;
}
/* line 114, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-feature li.clearing-featured-img {
display: block;
}
@media only screen and (min-width: 768px) {
/* line 122, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-main-prev,
.clearing-main-next {
position: absolute;
height: 100%;
width: 40px;
top: 0;
}
/* line 127, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-main-prev > span,
.clearing-main-next > span {
position: absolute;
top: 50%;
display: block;
width: 0;
height: 0;
border: solid 16px;
}
/* line 136, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-main-prev {
left: 0;
}
/* line 138, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-main-prev > span {
left: 5px;
border-color: transparent;
border-right-color: white;
}
/* line 144, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-main-next {
right: 0;
}
/* line 146, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-main-next > span {
border-color: transparent;
border-left-color: white;
}
/* line 153, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-main-prev.disabled,
.clearing-main-next.disabled {
opacity: 0.5;
}
/* line 157, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-assembled .clearing-container .carousel {
background: #111111;
height: 150px;
margin-top: 5px;
}
/* line 162, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-assembled .clearing-container .carousel > ul {
display: block;
z-index: 999;
width: 200%;
height: 100%;
margin-left: 0;
position: relative;
left: 0;
}
/* line 171, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-assembled .clearing-container .carousel > ul li {
display: block;
width: 175px;
height: inherit;
padding: 0;
float: left;
overflow: hidden;
margin-right: 1px;
position: relative;
cursor: pointer;
opacity: 0.4;
}
/* line 184, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-assembled .clearing-container .carousel > ul li.fix-height img {
min-height: 100%;
height: 100%;
max-width: none;
}
/* line 191, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-assembled .clearing-container .carousel > ul li a.th {
border: none;
-webkit-box-shadow: none;
box-shadow: none;
display: block;
}
/* line 200, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-assembled .clearing-container .carousel > ul li img {
cursor: pointer !important;
min-width: 100% !important;
}
/* line 205, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-assembled .clearing-container .carousel > ul li.visible {
opacity: 1;
}
/* line 210, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-assembled .clearing-container .visible-img {
background: #111111;
overflow: hidden;
height: 75%;
}
/* line 217, src/foundation/scss/foundation/components/_clearing.scss */
.clearing-close {
position: absolute;
top: 10px;
right: 20px;
padding-left: 0;
padding-top: 0;
}
}
/* Foundation Alerts */
/* line 94, src/foundation/scss/foundation/components/_alert-boxes.scss */
.alert-box {
border-style: solid;
border-width: 1px;
display: block;
font-weight: bold;
margin-bottom: 1.25em;
position: relative;
padding: 0.6875em 1.3125em 0.75em 0.6875em;
font-size: 0.875em;
background-color: #2ba6cb;
border-color: #2284a1;
color: white;
}
/* line 97, src/foundation/scss/foundation/components/_alert-boxes.scss */
.alert-box .close {
font-size: 1.375em;
padding: 5px 4px 4px;
line-height: 0;
position: absolute;
top: 0.4375em;
right: 0.3125em;
color: #333333;
opacity: 0.3;
}
/* line 81, src/foundation/scss/foundation/components/_alert-boxes.scss */
.alert-box .close:hover, .alert-box .close:focus {
opacity: 0.5;
}
/* line 99, src/foundation/scss/foundation/components/_alert-boxes.scss */
.alert-box.radius {
-webkit-border-radius: 3px;
border-radius: 3px;
}
/* line 100, src/foundation/scss/foundation/components/_alert-boxes.scss */
.alert-box.round {
-webkit-border-radius: 1000px;
border-radius: 1000px;
}
/* line 102, src/foundation/scss/foundation/components/_alert-boxes.scss */
.alert-box.success {
background-color: #5da423;
border-color: #457a1a;
color: white;
}
/* line 103, src/foundation/scss/foundation/components/_alert-boxes.scss */
.alert-box.alert {
background-color: #c60f13;
border-color: #970b0e;
color: white;
}
/* line 104, src/foundation/scss/foundation/components/_alert-boxes.scss */
.alert-box.secondary {
background-color: #e9e9e9;
border-color: #d0d0d0;
color: #505050;
}
/* Breadcrumbs */
/* line 116, src/foundation/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs {
display: block;
padding: 0.5625em 0.875em 0.5625em;
overflow: hidden;
margin-left: 0;
list-style: none;
border-style: solid;
border-width: 1px;
background-color: #f6f6f6;
border-color: gainsboro;
-webkit-border-radius: 3px;
border-radius: 3px;
}
/* line 120, src/foundation/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > * {
margin: 0;
float: left;
font-size: 0.6875em;
text-transform: uppercase;
color: #2ba6cb;
}
/* line 61, src/foundation/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *:hover a, .breadcrumbs > *:focus a {
text-decoration: underline;
}
/* line 64, src/foundation/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > * a,
.breadcrumbs > * span {
text-transform: uppercase;
color: #2ba6cb;
}
/* line 70, src/foundation/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *.current {
cursor: default;
color: #333333;
}
/* line 73, src/foundation/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *.current a {
cursor: default;
color: #333333;
}
/* line 79, src/foundation/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *.current:hover, .breadcrumbs > *.current:hover a, .breadcrumbs > *.current:focus, .breadcrumbs > *.current:focus a {
text-decoration: none;
}
/* line 83, src/foundation/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *.unavailable {
color: #999999;
}
/* line 85, src/foundation/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *.unavailable a {
color: #999999;
}
/* line 90, src/foundation/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *.unavailable:hover, .breadcrumbs > *.unavailable:hover a, .breadcrumbs > *.unavailable:focus,
.breadcrumbs > *.unavailable a:focus {
text-decoration: none;
color: #999999;
cursor: default;
}
/* line 97, src/foundation/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *:before {
content: "/";
color: #aaaaaa;
margin: 0 0.75em;
position: relative;
top: 1px;
}
/* line 105, src/foundation/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *:first-child:before {
content: " ";
margin: 0;
}
/* Keystroke Characters */
/* line 52, src/foundation/scss/foundation/components/_keystrokes.scss */
.keystroke,
kbd {
background-color: #ededed;
border-color: #dbdbdb;
color: #222222;
border-style: solid;
border-width: 1px;
margin: 0;
font-family: "Consolas", "Menlo", "Courier", monospace;
font-size: 0.875em;
padding: 0.125em 0.25em 0em;
-webkit-border-radius: 3px;
border-radius: 3px;
}
/* Labels */
/* line 71, src/foundation/scss/foundation/components/_labels.scss */
.label {
font-weight: bold;
text-align: center;
text-decoration: none;
line-height: 1;
white-space: nowrap;
display: inline-block;
position: relative;
padding: 0.1875em 0.625em 0.25em;
font-size: 0.875em;
background-color: #2ba6cb;
color: white;
}
/* line 77, src/foundation/scss/foundation/components/_labels.scss */
.label.radius {
-webkit-border-radius: 3px;
border-radius: 3px;
}
/* line 78, src/foundation/scss/foundation/components/_labels.scss */
.label.round {
-webkit-border-radius: 1000px;
border-radius: 1000px;
}
/* line 80, src/foundation/scss/foundation/components/_labels.scss */
.label.alert {
background-color: #c60f13;
color: white;
}
/* line 81, src/foundation/scss/foundation/components/_labels.scss */
.label.success {
background-color: #5da423;
color: white;
}
/* line 82, src/foundation/scss/foundation/components/_labels.scss */
.label.secondary {
background-color: #e9e9e9;
color: #333333;
}
/* Inline Lists */
/* line 49, src/foundation/scss/foundation/components/_inline-lists.scss */
.inline-list {
margin: 0 auto 1.0625em auto;
margin-left: -1.375em;
margin-right: 0;
padding: 0;
list-style: none;
overflow: hidden;
}
/* line 36, src/foundation/scss/foundation/components/_inline-lists.scss */
.inline-list > li {
list-style: none;
float: left;
margin-left: 1.375em;
display: block;
}
/* line 41, src/foundation/scss/foundation/components/_inline-lists.scss */
.inline-list > li > * {
display: block;
}
/* Pagination */
/* line 98, src/foundation/scss/foundation/components/_pagination.scss */
.pagination {
display: block;
height: 1.5em;
margin-left: -0.3125em;
}
/* line 46, src/foundation/scss/foundation/components/_pagination.scss */
.pagination li {
display: block;
float: left;
height: 1.5em;
color: #222222;
font-size: 0.875em;
margin-left: 0.3125em;
}
/* line 54, src/foundation/scss/foundation/components/_pagination.scss */
.pagination li a {
display: block;
padding: 0.0625em 0.4375em 0.0625em;
color: #999999;
}
/* line 61, src/foundation/scss/foundation/components/_pagination.scss */
.pagination li:hover a,
.pagination li a:focus {
background: #e6e6e6;
}
/* line 63, src/foundation/scss/foundation/components/_pagination.scss */
.pagination li.unavailable a {
cursor: default;
color: #999999;
}
/* line 68, src/foundation/scss/foundation/components/_pagination.scss */
.pagination li.unavailable:hover a, .pagination li.unavailable a:focus {
background: transparent;
}
/* line 70, src/foundation/scss/foundation/components/_pagination.scss */
.pagination li.current a {
background: #2ba6cb;
color: white;
font-weight: bold;
cursor: default;
}
/* line 77, src/foundation/scss/foundation/components/_pagination.scss */
.pagination li.current a:hover, .pagination li.current a:focus {
background: #2ba6cb;
}
/* line 83, src/foundation/scss/foundation/components/_pagination.scss */
.pagination-centered {
text-align: center;
}
/* line 84, src/foundation/scss/foundation/components/_pagination.scss */
.pagination-centered ul > li {
float: none;
display: inline-block;
}
/* Panels */
/* line 63, src/foundation/scss/foundation/components/_panels.scss */
.panel {
border-style: solid;
border-width: 1px;
border-color: #d9d9d9;
margin-bottom: 1.25em;
padding: 1.25em;
background: #f2f2f2;
}
/* line 44, src/foundation/scss/foundation/components/_panels.scss */
.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6, .panel p {
color: #333333;
}
/* line 48, src/foundation/scss/foundation/components/_panels.scss */
.panel > :first-child {
margin-top: 0;
}
/* line 49, src/foundation/scss/foundation/components/_panels.scss */
.panel > :last-child {
margin-bottom: 0;
}
/* line 52, src/foundation/scss/foundation/components/_panels.scss */
.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6 {
line-height: 1;
margin-bottom: 0.625em;
}
/* line 54, src/foundation/scss/foundation/components/_panels.scss */
.panel h1.subheader, .panel h2.subheader, .panel h3.subheader, .panel h4.subheader, .panel h5.subheader, .panel h6.subheader {
line-height: 1.4;
}
/* line 65, src/foundation/scss/foundation/components/_panels.scss */
.panel.callout {
border-style: solid;
border-width: 1px;
border-color: #2284a1;
margin-bottom: 1.25em;
padding: 1.25em;
background: #2ba6cb;
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}
/* line 45, src/foundation/scss/foundation/components/_panels.scss */
.panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6, .panel.callout p {
color: white;
}
/* line 48, src/foundation/scss/foundation/components/_panels.scss */
.panel.callout > :first-child {
margin-top: 0;
}
/* line 49, src/foundation/scss/foundation/components/_panels.scss */
.panel.callout > :last-child {
margin-bottom: 0;
}
/* line 52, src/foundation/scss/foundation/components/_panels.scss */
.panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6 {
line-height: 1;
margin-bottom: 0.625em;
}
/* line 54, src/foundation/scss/foundation/components/_panels.scss */
.panel.callout h1.subheader, .panel.callout h2.subheader, .panel.callout h3.subheader, .panel.callout h4.subheader, .panel.callout h5.subheader, .panel.callout h6.subheader {
line-height: 1.4;
}
/* line 70, src/foundation/scss/foundation/components/_panels.scss */
.panel.radius {
-webkit-border-radius: 3px;
border-radius: 3px;
}
/* Pricing Tables */
/* line 121, src/foundation/scss/foundation/components/_pricing-tables.scss */
.pricing-table {
border: solid 1px #dddddd;
margin-left: 0;
margin-bottom: 1.25em;
}
/* line 61, src/foundation/scss/foundation/components/_pricing-tables.scss */
.pricing-table * {
list-style: none;
line-height: 1;
}
/* line 124, src/foundation/scss/foundation/components/_pricing-tables.scss */
.pricing-table .title {
background-color: #dddddd;
padding: 0.9375em 1.25em;
text-align: center;
color: #333333;
font-weight: bold;
font-size: 1em;
}
/* line 125, src/foundation/scss/foundation/components/_pricing-tables.scss */
.pricing-table .price {
background-color: #eeeeee;
padding: 0.9375em 1.25em;
text-align: center;
color: #333333;
font-weight: normal;
font-size: 1.25em;
}
/* line 126, src/foundation/scss/foundation/components/_pricing-tables.scss */
.pricing-table .description {
background-color: white;
padding: 0.9375em;
text-align: center;
color: #777777;
font-size: 0.75em;
font-weight: normal;
line-height: 1.4;
border-bottom: dotted 1px #dddddd;
}
/* line 127, src/foundation/scss/foundation/components/_pricing-tables.scss */
.pricing-table .bullet-item {
background-color: white;
padding: 0.9375em;
text-align: center;
color: #333333;
font-size: 0.875em;
font-weight: normal;
border-bottom: dotted 1px #dddddd;
}
/* line 128, src/foundation/scss/foundation/components/_pricing-tables.scss */
.pricing-table .cta-button {
background-color: whitesmoke;
text-align: center;
padding: 1.25em 1.25em 0;
}
/* Progress Bar */
/* line 50, src/foundation/scss/foundation/components/_progress-bars.scss */
.progress {
background-color: transparent;
height: 1.5625em;
border: 1px solid #cccccc;
padding: 0.125em;
margin-bottom: 0.625em;
}
/* line 54, src/foundation/scss/foundation/components/_progress-bars.scss */
.progress .meter {
background: #2ba6cb;
height: 100%;
display: block;
}
/* line 57, src/foundation/scss/foundation/components/_progress-bars.scss */
.progress.secondary .meter {
background: #e9e9e9;
height: 100%;
display: block;
}
/* line 58, src/foundation/scss/foundation/components/_progress-bars.scss */
.progress.success .meter {
background: #5da423;
height: 100%;
display: block;
}
/* line 59, src/foundation/scss/foundation/components/_progress-bars.scss */
.progress.alert .meter {
background: #c60f13;
height: 100%;
display: block;
}
/* line 61, src/foundation/scss/foundation/components/_progress-bars.scss */
.progress.radius {
-webkit-border-radius: 3px;
border-radius: 3px;
}
/* line 62, src/foundation/scss/foundation/components/_progress-bars.scss */
.progress.radius .meter {
-webkit-border-radius: 2px;
border-radius: 2px;
}
/* line 65, src/foundation/scss/foundation/components/_progress-bars.scss */
.progress.round {
-webkit-border-radius: 1000px;
border-radius: 1000px;
}
/* line 66, src/foundation/scss/foundation/components/_progress-bars.scss */
.progress.round .meter {
-webkit-border-radius: 999px;
border-radius: 999px;
}
/* Side Nav */
/* line 67, src/foundation/scss/foundation/components/_side-nav.scss */
.side-nav {
display: block;
margin: 0;
padding: 0.875em 0;
list-style-type: none;
list-style-position: inside;
}
/* line 39, src/foundation/scss/foundation/components/_side-nav.scss */
.side-nav li {
margin: 0 0 0.4375em 0;
font-size: 0.875em;
}
/* line 43, src/foundation/scss/foundation/components/_side-nav.scss */
.side-nav li a {
display: block;
color: #2ba6cb;
}
/* line 48, src/foundation/scss/foundation/components/_side-nav.scss */
.side-nav li.active > a:first-child {
color: #4d4d4d;
font-weight: bold;
}
/* line 53, src/foundation/scss/foundation/components/_side-nav.scss */
.side-nav li.divider {
border-top: 1px solid;
height: 0;
padding: 0;
list-style: none;
border-top-color: #e6e6e6;
}
/* Side Nav */
/* line 66, src/foundation/scss/foundation/components/_sub-nav.scss */
.sub-nav {
display: block;
width: auto;
overflow: hidden;
margin: -0.25em 0 1.125em;
padding-top: 0.25em;
margin-right: 0;
margin-left: -0.5625em;
}
/* line 38, src/foundation/scss/foundation/components/_sub-nav.scss */
.sub-nav dt,
.sub-nav dd {
float: left;
display: inline;
margin-left: 0.5625em;
margin-bottom: 0.625em;
font-weight: normal;
font-size: 0.875em;
}
/* line 46, src/foundation/scss/foundation/components/_sub-nav.scss */
.sub-nav dt a,
.sub-nav dd a {
color: #999999;
text-decoration: none;
}
/* line 50, src/foundation/scss/foundation/components/_sub-nav.scss */
.sub-nav dt.active a,
.sub-nav dd.active a {
-webkit-border-radius: 1000px;
border-radius: 1000px;
font-weight: bold;
background: #2ba6cb;
padding: 0.1875em 0.5625em;
cursor: default;
color: white;
}
/* Foundation Switches */
@media only screen {
/* line 229, src/foundation/scss/foundation/components/_switch.scss */
div.switch {
position: relative;
width: 100%;
padding: 0;
display: block;
overflow: hidden;
border-style: solid;
border-width: 1px;
margin-bottom: 1.25em;
-webkit-animation: webkitSiblingBugfix infinite 1s;
height: 36px;
background: white;
border-color: #cccccc;
}
/* line 59, src/foundation/scss/foundation/components/_switch.scss */
div.switch label {
position: relative;
left: 0;
z-index: 2;
float: left;
width: 50%;
height: 100%;
margin: 0;
font-weight: bold;
text-align: left;
-webkit-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
transition: all 0.1s ease-out;
}
/* line 76, src/foundation/scss/foundation/components/_switch.scss */
div.switch input {
position: absolute;
z-index: 3;
opacity: 0;
width: 100%;
height: 100%;
-moz-appearance: none;
}
/* line 86, src/foundation/scss/foundation/components/_switch.scss */
div.switch input:hover, div.switch input:focus {
cursor: pointer;
}
/* line 92, src/foundation/scss/foundation/components/_switch.scss */
div.switch > span {
position: absolute;
top: -1px;
left: -1px;
z-index: 1;
display: block;
padding: 0;
border-width: 1px;
border-style: solid;
-webkit-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
transition: all 0.1s ease-out;
}
/* line 107, src/foundation/scss/foundation/components/_switch.scss */
div.switch input:not(:checked) + label {
opacity: 0;
}
/* line 110, src/foundation/scss/foundation/components/_switch.scss */
div.switch input:checked {
display: none !important;
}
/* line 111, src/foundation/scss/foundation/components/_switch.scss */
div.switch input {
left: 0;
display: block !important;
}
/* line 115, src/foundation/scss/foundation/components/_switch.scss */
div.switch input:first-of-type + label,
div.switch input:first-of-type + span + label {
left: -50%;
}
/* line 117, src/foundation/scss/foundation/components/_switch.scss */
div.switch input:first-of-type:checked + label,
div.switch input:first-of-type:checked + span + label {
left: 0%;
}
/* line 121, src/foundation/scss/foundation/components/_switch.scss */
div.switch input:last-of-type + label,
div.switch input:last-of-type + span + label {
right: -50%;
left: auto;
text-align: right;
}
/* line 123, src/foundation/scss/foundation/components/_switch.scss */
div.switch input:last-of-type:checked + label,
div.switch input:last-of-type:checked + span + label {
right: 0%;
left: auto;
}
/* line 126, src/foundation/scss/foundation/components/_switch.scss */
div.switch span.custom {
display: none !important;
}
/* line 139, src/foundation/scss/foundation/components/_switch.scss */
div.switch label {
padding: 0 0.375em;
line-height: 2.3em;
font-size: 0.875em;
}
/* line 147, src/foundation/scss/foundation/components/_switch.scss */
div.switch input:first-of-type:checked ~ span {
left: 100%;
margin-left: -2.1875em;
}
/* line 153, src/foundation/scss/foundation/components/_switch.scss */
div.switch > span {
width: 2.25em;
height: 2.25em;
}
/* line 167, src/foundation/scss/foundation/components/_switch.scss */
div.switch > span {
border-color: #b3b3b3;
background: white;
background: -moz-linear-gradient(top, white 0%, #f2f2f2 100%);
background: -webkit-linear-gradient(top, white 0%, #f2f2f2 100%);
background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%);
-webkit-box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 1000px #e1f5d1, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px whitesmoke;
box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 980px #e1f5d1, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px whitesmoke;
}
/* line 191, src/foundation/scss/foundation/components/_switch.scss */
div.switch:hover > span, div.switch:focus > span {
background: white;
background: -moz-linear-gradient(top, white 0%, #e6e6e6 100%);
background: -webkit-linear-gradient(top, white 0%, #e6e6e6 100%);
background: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%);
}
/* line 201, src/foundation/scss/foundation/components/_switch.scss */
div.switch:active {
background: transparent;
}
/* line 233, src/foundation/scss/foundation/components/_switch.scss */
div.switch.large {
height: 44px;
}
/* line 139, src/foundation/scss/foundation/components/_switch.scss */
div.switch.large label {
padding: 0 0.375em;
line-height: 2.3em;
font-size: 1.0625em;
}
/* line 147, src/foundation/scss/foundation/components/_switch.scss */
div.switch.large input:first-of-type:checked ~ span {
left: 100%;
margin-left: -2.6875em;
}
/* line 153, src/foundation/scss/foundation/components/_switch.scss */
div.switch.large > span {
width: 2.75em;
height: 2.75em;
}
/* line 236, src/foundation/scss/foundation/components/_switch.scss */
div.switch.small {
height: 28px;
}
/* line 139, src/foundation/scss/foundation/components/_switch.scss */
div.switch.small label {
padding: 0 0.375em;
line-height: 2.1em;
font-size: 0.75em;
}
/* line 147, src/foundation/scss/foundation/components/_switch.scss */
div.switch.small input:first-of-type:checked ~ span {
left: 100%;
margin-left: -1.6875em;
}
/* line 153, src/foundation/scss/foundation/components/_switch.scss */
div.switch.small > span {
width: 1.75em;
height: 1.75em;
}
/* line 239, src/foundation/scss/foundation/components/_switch.scss */
div.switch.tiny {
height: 22px;
}
/* line 139, src/foundation/scss/foundation/components/_switch.scss */
div.switch.tiny label {
padding: 0 0.375em;
line-height: 1.9em;
font-size: 0.6875em;
}
/* line 147, src/foundation/scss/foundation/components/_switch.scss */
div.switch.tiny input:first-of-type:checked ~ span {
left: 100%;
margin-left: -1.3125em;
}
/* line 153, src/foundation/scss/foundation/components/_switch.scss */
div.switch.tiny > span {
width: 1.375em;
height: 1.375em;
}
/* line 242, src/foundation/scss/foundation/components/_switch.scss */
div.switch.radius {
-webkit-border-radius: 4px;
border-radius: 4px;
}
/* line 243, src/foundation/scss/foundation/components/_switch.scss */
div.switch.radius > span {
-webkit-border-radius: 3px;
border-radius: 3px;
}
/* line 247, src/foundation/scss/foundation/components/_switch.scss */
div.switch.round {
-webkit-border-radius: 1000px;
border-radius: 1000px;
}
/* line 248, src/foundation/scss/foundation/components/_switch.scss */
div.switch.round > span {
-webkit-border-radius: 999px;
border-radius: 999px;
}
/* line 249, src/foundation/scss/foundation/components/_switch.scss */
div.switch.round label {
padding: 0 0.5625em;
}
@-webkit-keyframes webkitSiblingBugfix {
/* line 254, src/foundation/scss/foundation/components/_switch.scss */
from {
position: relative;
}
/* line 254, src/foundation/scss/foundation/components/_switch.scss */
to {
position: relative;
}
}
}
/* line 11, src/foundation/scss/foundation/components/_magellan.scss */
[data-magellan-expedition] {
background: white;
z-index: 50;
min-width: 100%;
padding: 10px;
}
/* line 17, src/foundation/scss/foundation/components/_magellan.scss */
[data-magellan-expedition] .sub-nav {
margin-bottom: 0;
}
/* line 19, src/foundation/scss/foundation/components/_magellan.scss */
[data-magellan-expedition] .sub-nav dd {
margin-bottom: 0;
}
/* Tables */
/* line 80, src/foundation/scss/foundation/components/_tables.scss */
table {
background: white;
margin-bottom: 1.25em;
border: solid 1px #dddddd;
}
/* line 42, src/foundation/scss/foundation/components/_tables.scss */
table thead,
table tfoot {
background: whitesmoke;
font-weight: bold;
}
/* line 48, src/foundation/scss/foundation/components/_tables.scss */
table thead tr th,
table thead tr td,
table tfoot tr th,
table tfoot tr td {
padding: 0.5em 0.625em 0.625em;
font-size: 0.875em;
color: #222222;
text-align: left;
}
/* line 59, src/foundation/scss/foundation/components/_tables.scss */
table tr th,
table tr td {
padding: 0.5625em 0.625em;
font-size: 0.875em;
color: #222222;
}
/* line 67, src/foundation/scss/foundation/components/_tables.scss */
table tr.even, table tr.alt, table tr:nth-of-type(even) {
background: #f9f9f9;
}
/* line 74, src/foundation/scss/foundation/components/_tables.scss */
table thead tr th,
table tfoot tr th,
table tbody tr td,
table tr td,
table tfoot tr td {
display: table-cell;
line-height: 1.125em;
}
/* Image Thumbnails */
/* line 45, src/foundation/scss/foundation/components/_thumbs.scss */
.th {
line-height: 0;
display: inline-block;
border: solid 4px white;
-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
-webkit-transition: all 200ms ease-out;
-moz-transition: all 200ms ease-out;
transition: all 200ms ease-out;
}
/* line 32, src/foundation/scss/foundation/components/_thumbs.scss */
.th:hover, .th:focus {
-webkit-box-shadow: 0 0 6px 1px rgba(43, 166, 203, 0.5);
box-shadow: 0 0 6px 1px rgba(43, 166, 203, 0.5);
}
/* line 49, src/foundation/scss/foundation/components/_thumbs.scss */
.th.radius {
-webkit-border-radius: 3px;
border-radius: 3px;
}
/* line 51, src/foundation/scss/foundation/components/_thumbs.scss */
a.th {
display: inline-block;
}
/* Tooltips */
/* line 29, src/foundation/scss/foundation/components/_tooltips.scss */
.has-tip {
border-bottom: dotted 1px #cccccc;
cursor: help;
font-weight: bold;
color: #333333;
}
/* line 36, src/foundation/scss/foundation/components/_tooltips.scss */
.has-tip:hover, .has-tip:focus {
border-bottom: dotted 1px #196177;
color: #2ba6cb;
}
/* line 42, src/foundation/scss/foundation/components/_tooltips.scss */
.has-tip.tip-left, .has-tip.tip-right {
float: none !important;
}
/* line 45, src/foundation/scss/foundation/components/_tooltips.scss */
.tooltip {
display: none;
position: absolute;
z-index: 999;
font-weight: bold;
font-size: 0.9375em;
line-height: 1.3;
padding: 0.5em;
max-width: 85%;
left: 50%;
width: 100%;
color: white;
background: black;
-webkit-border-radius: 3px;
border-radius: 3px;
}
/* line 60, src/foundation/scss/foundation/components/_tooltips.scss */
.tooltip > .nub {
display: block;
left: 5px;
position: absolute;
width: 0;
height: 0;
border: solid 5px;
border-color: transparent transparent black transparent;
top: -10px;
}
/* line 71, src/foundation/scss/foundation/components/_tooltips.scss */
.tooltip.opened {
color: #2ba6cb !important;
border-bottom: dotted 1px #196177 !important;
}
/* line 77, src/foundation/scss/foundation/components/_tooltips.scss */
.tap-to-close {
display: block;
font-size: 0.625em;
color: #888888;
font-weight: normal;
}
@media only screen and (min-width: 768px) {
/* line 86, src/foundation/scss/foundation/components/_tooltips.scss */
.tooltip > .nub {
border-color: transparent transparent black transparent;
top: -10px;
}
/* line 90, src/foundation/scss/foundation/components/_tooltips.scss */
.tooltip.tip-top > .nub {
border-color: black transparent transparent transparent;
top: auto;
bottom: -10px;
}
/* line 97, src/foundation/scss/foundation/components/_tooltips.scss */
.tooltip.tip-left, .tooltip.tip-right {
float: none !important;
}
/* line 99, src/foundation/scss/foundation/components/_tooltips.scss */
.tooltip.tip-left > .nub {
border-color: transparent transparent transparent black;
right: -10px;
left: auto;
top: 50%;
margin-top: -5px;
}
/* line 106, src/foundation/scss/foundation/components/_tooltips.scss */
.tooltip.tip-right > .nub {
border-color: transparent black transparent transparent;
right: auto;
left: -10px;
top: 50%;
margin-top: -5px;
}
}
@media only screen and (max-width: 767px) {
/* line 127, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown {
max-width: 100%;
left: 0;
}
}
/* Foundation Dropdowns */
/* line 134, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown {
position: absolute;
top: -9999px;
list-style: none;
width: 100%;
max-height: none;
height: auto;
background: white;
border: solid 1px #cccccc;
font-size: 16px;
z-index: 99;
margin-top: 2px;
max-width: 200px;
}
/* line 49, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown > *:first-child {
margin-top: 0;
}
/* line 50, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown > *:last-child {
margin-bottom: 0;
}
/* line 75, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown:before {
content: "";
display: block;
width: 0;
height: 0;
border: inset 6px;
border-color: transparent transparent white transparent;
border-bottom-style: solid;
position: absolute;
top: -12px;
left: 10px;
z-index: 99;
}
/* line 82, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown:after {
content: "";
display: block;
width: 0;
height: 0;
border: inset 7px;
border-color: transparent transparent #cccccc transparent;
border-bottom-style: solid;
position: absolute;
top: -14px;
left: 9px;
z-index: 98;
}
/* line 90, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown.right:before {
left: auto;
right: 10px;
}
/* line 94, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown.right:after {
left: auto;
right: 9px;
}
/* line 138, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown li {
font-size: 0.875em;
cursor: pointer;
line-height: 1.125em;
margin: 0;
}
/* line 114, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown li:hover, .f-dropdown li:focus {
background: #eeeeee;
}
/* line 116, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown li a {
display: block;
padding: 0.3125em 0.625em;
color: #555555;
}
/* line 141, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown.content {
position: absolute;
top: -9999px;
list-style: none;
padding: 1.25em;
width: 100%;
height: auto;
max-height: none;
background: white;
border: solid 1px #cccccc;
font-size: 16px;
z-index: 99;
max-width: 200px;
}
/* line 49, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown.content > *:first-child {
margin-top: 0;
}
/* line 50, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown.content > *:last-child {
margin-bottom: 0;
}
/* line 144, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown.tiny {
max-width: 200px;
}
/* line 145, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown.small {
max-width: 300px;
}
/* line 146, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown.medium {
max-width: 500px;
}
/* line 147, src/foundation/scss/foundation/components/_dropdown.scss */
.f-dropdown.large {
max-width: 800px;
}
/*!
* Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/
/* FONT PATH
* -------------------------- */
@font-face {
font-family: 'FontAwesome';
src: url("../fonts/font-awesome/fontawesome-webfont.eot");
src: url("../fonts/font-awesome/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/font-awesome/fontawesome-webfont.woff") format("woff"), url("../fonts/font-awesome/fontawesome-webfont.ttf") format("truetype"), url("../fonts/font-awesome/fontawesome-webfont.svg#fontawesomeregular") format("svg");
font-weight: normal;
font-style: normal;
}
/* line 4, src/font-awesome/stylesheets/font-awesome/_core.scss */
.fa {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
/* line 5, src/font-awesome/stylesheets/font-awesome/_larger.scss */
.fa-lg {
font-size: 1.33333em;
line-height: 0.75em;
vertical-align: -15%;
}
/* line 10, src/font-awesome/stylesheets/font-awesome/_larger.scss */
.fa-2x {
font-size: 2em;
}
/* line 11, src/font-awesome/stylesheets/font-awesome/_larger.scss */
.fa-3x {
font-size: 3em;
}
/* line 12, src/font-awesome/stylesheets/font-awesome/_larger.scss */
.fa-4x {
font-size: 4em;
}
/* line 13, src/font-awesome/stylesheets/font-awesome/_larger.scss */
.fa-5x {
font-size: 5em;
}
/* line 3, src/font-awesome/stylesheets/font-awesome/_fixed-width.scss */
.fa-fw {
width: 1.28571em;
text-align: center;
}
/* line 4, src/font-awesome/stylesheets/font-awesome/_list.scss */
.fa-ul {
padding-left: 0;
margin-left: 2.14286em;
list-style-type: none;
}
/* line 8, src/font-awesome/stylesheets/font-awesome/_list.scss */
.fa-ul > li {
position: relative;
}
/* line 10, src/font-awesome/stylesheets/font-awesome/_list.scss */
.fa-li {
position: absolute;
left: -2.14286em;
width: 2.14286em;
top: 0.14286em;
text-align: center;
}
/* line 16, src/font-awesome/stylesheets/font-awesome/_list.scss */
.fa-li.fa-lg {
left: -1.85714em;
}
/* line 4, src/font-awesome/stylesheets/font-awesome/_bordered-pulled.scss */
.fa-border {
padding: .2em .25em .15em;
border: solid 0.08em #eeeeee;
border-radius: .1em;
}
/* line 10, src/font-awesome/stylesheets/font-awesome/_bordered-pulled.scss */
.pull-right {
float: right;
}
/* line 11, src/font-awesome/stylesheets/font-awesome/_bordered-pulled.scss */
.pull-left {
float: left;
}
/* line 14, src/font-awesome/stylesheets/font-awesome/_bordered-pulled.scss */
.fa.pull-left {
margin-right: .3em;
}
/* line 15, src/font-awesome/stylesheets/font-awesome/_bordered-pulled.scss */
.fa.pull-right {
margin-left: .3em;
}
/* line 4, src/font-awesome/stylesheets/font-awesome/_spinning.scss */
.fa-spin {
-webkit-animation: fa-spin 2s infinite linear;
animation: fa-spin 2s infinite linear;
}
@-webkit-keyframes fa-spin {
/* line 10, src/font-awesome/stylesheets/font-awesome/_spinning.scss */
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
/* line 14, src/font-awesome/stylesheets/font-awesome/_spinning.scss */
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes fa-spin {
/* line 21, src/font-awesome/stylesheets/font-awesome/_spinning.scss */
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
/* line 25, src/font-awesome/stylesheets/font-awesome/_spinning.scss */
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
/* line 4, src/font-awesome/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-rotate-90 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
/* line 5, src/font-awesome/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-rotate-180 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}
/* line 6, src/font-awesome/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-rotate-270 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
-webkit-transform: rotate(270deg);
-ms-transform: rotate(270deg);
transform: rotate(270deg);
}
/* line 8, src/font-awesome/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-flip-horizontal {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
-webkit-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
transform: scale(-1, 1);
}
/* line 9, src/font-awesome/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-flip-vertical {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
-webkit-transform: scale(1, -1);
-ms-transform: scale(1, -1);
transform: scale(1, -1);
}
/* line 18, src/font-awesome/stylesheets/font-awesome/_rotated-flipped.scss */
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
filter: none;
}
/* line 4, src/font-awesome/stylesheets/font-awesome/_stacked.scss */
.fa-stack {
position: relative;
display: inline-block;
width: 2em;
height: 2em;
line-height: 2em;
vertical-align: middle;
}
/* line 12, src/font-awesome/stylesheets/font-awesome/_stacked.scss */
.fa-stack-1x, .fa-stack-2x {
position: absolute;
left: 0;
width: 100%;
text-align: center;
}
/* line 18, src/font-awesome/stylesheets/font-awesome/_stacked.scss */
.fa-stack-1x {
line-height: inherit;
}
/* line 19, src/font-awesome/stylesheets/font-awesome/_stacked.scss */
.fa-stack-2x {
font-size: 2em;
}
/* line 20, src/font-awesome/stylesheets/font-awesome/_stacked.scss */
.fa-inverse {
color: white;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
/* line 4, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-glass:before {
content: "\f000";
}
/* line 5, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-music:before {
content: "\f001";
}
/* line 6, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-search:before {
content: "\f002";
}
/* line 7, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-envelope-o:before {
content: "\f003";
}
/* line 8, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-heart:before {
content: "\f004";
}
/* line 9, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-star:before {
content: "\f005";
}
/* line 10, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-star-o:before {
content: "\f006";
}
/* line 11, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-user:before {
content: "\f007";
}
/* line 12, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-film:before {
content: "\f008";
}
/* line 13, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-th-large:before {
content: "\f009";
}
/* line 14, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-th:before {
content: "\f00a";
}
/* line 15, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-th-list:before {
content: "\f00b";
}
/* line 16, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-check:before {
content: "\f00c";
}
/* line 19, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-remove:before,
.fa-close:before,
.fa-times:before {
content: "\f00d";
}
/* line 20, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-search-plus:before {
content: "\f00e";
}
/* line 21, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-search-minus:before {
content: "\f010";
}
/* line 22, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-power-off:before {
content: "\f011";
}
/* line 23, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-signal:before {
content: "\f012";
}
/* line 25, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-gear:before,
.fa-cog:before {
content: "\f013";
}
/* line 26, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-trash-o:before {
content: "\f014";
}
/* line 27, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-home:before {
content: "\f015";
}
/* line 28, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-file-o:before {
content: "\f016";
}
/* line 29, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-clock-o:before {
content: "\f017";
}
/* line 30, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-road:before {
content: "\f018";
}
/* line 31, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-download:before {
content: "\f019";
}
/* line 32, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-o-down:before {
content: "\f01a";
}
/* line 33, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-o-up:before {
content: "\f01b";
}
/* line 34, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-inbox:before {
content: "\f01c";
}
/* line 35, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-play-circle-o:before {
content: "\f01d";
}
/* line 37, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-rotate-right:before,
.fa-repeat:before {
content: "\f01e";
}
/* line 38, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-refresh:before {
content: "\f021";
}
/* line 39, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-list-alt:before {
content: "\f022";
}
/* line 40, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-lock:before {
content: "\f023";
}
/* line 41, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-flag:before {
content: "\f024";
}
/* line 42, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-headphones:before {
content: "\f025";
}
/* line 43, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-volume-off:before {
content: "\f026";
}
/* line 44, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-volume-down:before {
content: "\f027";
}
/* line 45, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-volume-up:before {
content: "\f028";
}
/* line 46, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-qrcode:before {
content: "\f029";
}
/* line 47, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-barcode:before {
content: "\f02a";
}
/* line 48, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-tag:before {
content: "\f02b";
}
/* line 49, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-tags:before {
content: "\f02c";
}
/* line 50, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-book:before {
content: "\f02d";
}
/* line 51, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-bookmark:before {
content: "\f02e";
}
/* line 52, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-print:before {
content: "\f02f";
}
/* line 53, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-camera:before {
content: "\f030";
}
/* line 54, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-font:before {
content: "\f031";
}
/* line 55, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-bold:before {
content: "\f032";
}
/* line 56, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-italic:before {
content: "\f033";
}
/* line 57, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-text-height:before {
content: "\f034";
}
/* line 58, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-text-width:before {
content: "\f035";
}
/* line 59, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-align-left:before {
content: "\f036";
}
/* line 60, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-align-center:before {
content: "\f037";
}
/* line 61, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-align-right:before {
content: "\f038";
}
/* line 62, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-align-justify:before {
content: "\f039";
}
/* line 63, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-list:before {
content: "\f03a";
}
/* line 65, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-dedent:before,
.fa-outdent:before {
content: "\f03b";
}
/* line 66, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-indent:before {
content: "\f03c";
}
/* line 67, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-video-camera:before {
content: "\f03d";
}
/* line 70, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
content: "\f03e";
}
/* line 71, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-pencil:before {
content: "\f040";
}
/* line 72, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-map-marker:before {
content: "\f041";
}
/* line 73, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-adjust:before {
content: "\f042";
}
/* line 74, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-tint:before {
content: "\f043";
}
/* line 76, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-edit:before,
.fa-pencil-square-o:before {
content: "\f044";
}
/* line 77, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-share-square-o:before {
content: "\f045";
}
/* line 78, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-check-square-o:before {
content: "\f046";
}
/* line 79, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-arrows:before {
content: "\f047";
}
/* line 80, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-step-backward:before {
content: "\f048";
}
/* line 81, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-fast-backward:before {
content: "\f049";
}
/* line 82, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-backward:before {
content: "\f04a";
}
/* line 83, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-play:before {
content: "\f04b";
}
/* line 84, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-pause:before {
content: "\f04c";
}
/* line 85, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-stop:before {
content: "\f04d";
}
/* line 86, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-forward:before {
content: "\f04e";
}
/* line 87, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-fast-forward:before {
content: "\f050";
}
/* line 88, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-step-forward:before {
content: "\f051";
}
/* line 89, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-eject:before {
content: "\f052";
}
/* line 90, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-chevron-left:before {
content: "\f053";
}
/* line 91, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-chevron-right:before {
content: "\f054";
}
/* line 92, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-plus-circle:before {
content: "\f055";
}
/* line 93, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-minus-circle:before {
content: "\f056";
}
/* line 94, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-times-circle:before {
content: "\f057";
}
/* line 95, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-check-circle:before {
content: "\f058";
}
/* line 96, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-question-circle:before {
content: "\f059";
}
/* line 97, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-info-circle:before {
content: "\f05a";
}
/* line 98, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-crosshairs:before {
content: "\f05b";
}
/* line 99, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-times-circle-o:before {
content: "\f05c";
}
/* line 100, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-check-circle-o:before {
content: "\f05d";
}
/* line 101, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-ban:before {
content: "\f05e";
}
/* line 102, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-arrow-left:before {
content: "\f060";
}
/* line 103, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-arrow-right:before {
content: "\f061";
}
/* line 104, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-arrow-up:before {
content: "\f062";
}
/* line 105, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-arrow-down:before {
content: "\f063";
}
/* line 107, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-mail-forward:before,
.fa-share:before {
content: "\f064";
}
/* line 108, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-expand:before {
content: "\f065";
}
/* line 109, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-compress:before {
content: "\f066";
}
/* line 110, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-plus:before {
content: "\f067";
}
/* line 111, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-minus:before {
content: "\f068";
}
/* line 112, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-asterisk:before {
content: "\f069";
}
/* line 113, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-exclamation-circle:before {
content: "\f06a";
}
/* line 114, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-gift:before {
content: "\f06b";
}
/* line 115, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-leaf:before {
content: "\f06c";
}
/* line 116, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-fire:before {
content: "\f06d";
}
/* line 117, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-eye:before {
content: "\f06e";
}
/* line 118, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-eye-slash:before {
content: "\f070";
}
/* line 120, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-warning:before,
.fa-exclamation-triangle:before {
content: "\f071";
}
/* line 121, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-plane:before {
content: "\f072";
}
/* line 122, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-calendar:before {
content: "\f073";
}
/* line 123, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-random:before {
content: "\f074";
}
/* line 124, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-comment:before {
content: "\f075";
}
/* line 125, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-magnet:before {
content: "\f076";
}
/* line 126, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-chevron-up:before {
content: "\f077";
}
/* line 127, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-chevron-down:before {
content: "\f078";
}
/* line 128, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-retweet:before {
content: "\f079";
}
/* line 129, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-shopping-cart:before {
content: "\f07a";
}
/* line 130, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-folder:before {
content: "\f07b";
}
/* line 131, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-folder-open:before {
content: "\f07c";
}
/* line 132, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-arrows-v:before {
content: "\f07d";
}
/* line 133, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-arrows-h:before {
content: "\f07e";
}
/* line 135, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-bar-chart-o:before,
.fa-bar-chart:before {
content: "\f080";
}
/* line 136, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-twitter-square:before {
content: "\f081";
}
/* line 137, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-facebook-square:before {
content: "\f082";
}
/* line 138, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-camera-retro:before {
content: "\f083";
}
/* line 139, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-key:before {
content: "\f084";
}
/* line 141, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-gears:before,
.fa-cogs:before {
content: "\f085";
}
/* line 142, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-comments:before {
content: "\f086";
}
/* line 143, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-thumbs-o-up:before {
content: "\f087";
}
/* line 144, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-thumbs-o-down:before {
content: "\f088";
}
/* line 145, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-star-half:before {
content: "\f089";
}
/* line 146, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-heart-o:before {
content: "\f08a";
}
/* line 147, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-sign-out:before {
content: "\f08b";
}
/* line 148, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-linkedin-square:before {
content: "\f08c";
}
/* line 149, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-thumb-tack:before {
content: "\f08d";
}
/* line 150, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-external-link:before {
content: "\f08e";
}
/* line 151, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-sign-in:before {
content: "\f090";
}
/* line 152, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-trophy:before {
content: "\f091";
}
/* line 153, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-github-square:before {
content: "\f092";
}
/* line 154, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-upload:before {
content: "\f093";
}
/* line 155, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-lemon-o:before {
content: "\f094";
}
/* line 156, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-phone:before {
content: "\f095";
}
/* line 157, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-square-o:before {
content: "\f096";
}
/* line 158, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-bookmark-o:before {
content: "\f097";
}
/* line 159, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-phone-square:before {
content: "\f098";
}
/* line 160, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-twitter:before {
content: "\f099";
}
/* line 161, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-facebook:before {
content: "\f09a";
}
/* line 162, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-github:before {
content: "\f09b";
}
/* line 163, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-unlock:before {
content: "\f09c";
}
/* line 164, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-credit-card:before {
content: "\f09d";
}
/* line 165, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-rss:before {
content: "\f09e";
}
/* line 166, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-hdd-o:before {
content: "\f0a0";
}
/* line 167, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-bullhorn:before {
content: "\f0a1";
}
/* line 168, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-bell:before {
content: "\f0f3";
}
/* line 169, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-certificate:before {
content: "\f0a3";
}
/* line 170, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-hand-o-right:before {
content: "\f0a4";
}
/* line 171, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-hand-o-left:before {
content: "\f0a5";
}
/* line 172, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-hand-o-up:before {
content: "\f0a6";
}
/* line 173, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-hand-o-down:before {
content: "\f0a7";
}
/* line 174, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-left:before {
content: "\f0a8";
}
/* line 175, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-right:before {
content: "\f0a9";
}
/* line 176, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-up:before {
content: "\f0aa";
}
/* line 177, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-down:before {
content: "\f0ab";
}
/* line 178, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-globe:before {
content: "\f0ac";
}
/* line 179, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-wrench:before {
content: "\f0ad";
}
/* line 180, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-tasks:before {
content: "\f0ae";
}
/* line 181, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-filter:before {
content: "\f0b0";
}
/* line 182, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-briefcase:before {
content: "\f0b1";
}
/* line 183, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-arrows-alt:before {
content: "\f0b2";
}
/* line 185, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-group:before,
.fa-users:before {
content: "\f0c0";
}
/* line 187, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-chain:before,
.fa-link:before {
content: "\f0c1";
}
/* line 188, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-cloud:before {
content: "\f0c2";
}
/* line 189, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-flask:before {
content: "\f0c3";
}
/* line 191, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-cut:before,
.fa-scissors:before {
content: "\f0c4";
}
/* line 193, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-copy:before,
.fa-files-o:before {
content: "\f0c5";
}
/* line 194, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-paperclip:before {
content: "\f0c6";
}
/* line 196, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-save:before,
.fa-floppy-o:before {
content: "\f0c7";
}
/* line 197, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-square:before {
content: "\f0c8";
}
/* line 200, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
content: "\f0c9";
}
/* line 201, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-list-ul:before {
content: "\f0ca";
}
/* line 202, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-list-ol:before {
content: "\f0cb";
}
/* line 203, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-strikethrough:before {
content: "\f0cc";
}
/* line 204, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-underline:before {
content: "\f0cd";
}
/* line 205, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-table:before {
content: "\f0ce";
}
/* line 206, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-magic:before {
content: "\f0d0";
}
/* line 207, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-truck:before {
content: "\f0d1";
}
/* line 208, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-pinterest:before {
content: "\f0d2";
}
/* line 209, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-pinterest-square:before {
content: "\f0d3";
}
/* line 210, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-google-plus-square:before {
content: "\f0d4";
}
/* line 211, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-google-plus:before {
content: "\f0d5";
}
/* line 212, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-money:before {
content: "\f0d6";
}
/* line 213, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-caret-down:before {
content: "\f0d7";
}
/* line 214, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-caret-up:before {
content: "\f0d8";
}
/* line 215, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-caret-left:before {
content: "\f0d9";
}
/* line 216, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-caret-right:before {
content: "\f0da";
}
/* line 217, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-columns:before {
content: "\f0db";
}
/* line 219, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-unsorted:before,
.fa-sort:before {
content: "\f0dc";
}
/* line 221, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-sort-down:before,
.fa-sort-desc:before {
content: "\f0dd";
}
/* line 223, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-sort-up:before,
.fa-sort-asc:before {
content: "\f0de";
}
/* line 224, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-envelope:before {
content: "\f0e0";
}
/* line 225, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-linkedin:before {
content: "\f0e1";
}
/* line 227, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-rotate-left:before,
.fa-undo:before {
content: "\f0e2";
}
/* line 229, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-legal:before,
.fa-gavel:before {
content: "\f0e3";
}
/* line 231, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-dashboard:before,
.fa-tachometer:before {
content: "\f0e4";
}
/* line 232, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-comment-o:before {
content: "\f0e5";
}
/* line 233, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-comments-o:before {
content: "\f0e6";
}
/* line 235, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-flash:before,
.fa-bolt:before {
content: "\f0e7";
}
/* line 236, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-sitemap:before {
content: "\f0e8";
}
/* line 237, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-umbrella:before {
content: "\f0e9";
}
/* line 239, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-paste:before,
.fa-clipboard:before {
content: "\f0ea";
}
/* line 240, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-lightbulb-o:before {
content: "\f0eb";
}
/* line 241, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-exchange:before {
content: "\f0ec";
}
/* line 242, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-cloud-download:before {
content: "\f0ed";
}
/* line 243, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-cloud-upload:before {
content: "\f0ee";
}
/* line 244, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-user-md:before {
content: "\f0f0";
}
/* line 245, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-stethoscope:before {
content: "\f0f1";
}
/* line 246, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-suitcase:before {
content: "\f0f2";
}
/* line 247, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-bell-o:before {
content: "\f0a2";
}
/* line 248, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-coffee:before {
content: "\f0f4";
}
/* line 249, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-cutlery:before {
content: "\f0f5";
}
/* line 250, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-file-text-o:before {
content: "\f0f6";
}
/* line 251, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-building-o:before {
content: "\f0f7";
}
/* line 252, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-hospital-o:before {
content: "\f0f8";
}
/* line 253, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-ambulance:before {
content: "\f0f9";
}
/* line 254, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-medkit:before {
content: "\f0fa";
}
/* line 255, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-fighter-jet:before {
content: "\f0fb";
}
/* line 256, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-beer:before {
content: "\f0fc";
}
/* line 257, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-h-square:before {
content: "\f0fd";
}
/* line 258, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-plus-square:before {
content: "\f0fe";
}
/* line 259, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-angle-double-left:before {
content: "\f100";
}
/* line 260, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-angle-double-right:before {
content: "\f101";
}
/* line 261, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-angle-double-up:before {
content: "\f102";
}
/* line 262, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-angle-double-down:before {
content: "\f103";
}
/* line 263, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-angle-left:before {
content: "\f104";
}
/* line 264, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-angle-right:before {
content: "\f105";
}
/* line 265, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-angle-up:before {
content: "\f106";
}
/* line 266, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-angle-down:before {
content: "\f107";
}
/* line 267, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-desktop:before {
content: "\f108";
}
/* line 268, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-laptop:before {
content: "\f109";
}
/* line 269, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-tablet:before {
content: "\f10a";
}
/* line 271, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-mobile-phone:before,
.fa-mobile:before {
content: "\f10b";
}
/* line 272, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-circle-o:before {
content: "\f10c";
}
/* line 273, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-quote-left:before {
content: "\f10d";
}
/* line 274, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-quote-right:before {
content: "\f10e";
}
/* line 275, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-spinner:before {
content: "\f110";
}
/* line 276, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-circle:before {
content: "\f111";
}
/* line 278, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-mail-reply:before,
.fa-reply:before {
content: "\f112";
}
/* line 279, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-github-alt:before {
content: "\f113";
}
/* line 280, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-folder-o:before {
content: "\f114";
}
/* line 281, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-folder-open-o:before {
content: "\f115";
}
/* line 282, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-smile-o:before {
content: "\f118";
}
/* line 283, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-frown-o:before {
content: "\f119";
}
/* line 284, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-meh-o:before {
content: "\f11a";
}
/* line 285, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-gamepad:before {
content: "\f11b";
}
/* line 286, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-keyboard-o:before {
content: "\f11c";
}
/* line 287, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-flag-o:before {
content: "\f11d";
}
/* line 288, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-flag-checkered:before {
content: "\f11e";
}
/* line 289, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-terminal:before {
content: "\f120";
}
/* line 290, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-code:before {
content: "\f121";
}
/* line 292, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-mail-reply-all:before,
.fa-reply-all:before {
content: "\f122";
}
/* line 295, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
content: "\f123";
}
/* line 296, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-location-arrow:before {
content: "\f124";
}
/* line 297, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-crop:before {
content: "\f125";
}
/* line 298, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-code-fork:before {
content: "\f126";
}
/* line 300, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-unlink:before,
.fa-chain-broken:before {
content: "\f127";
}
/* line 301, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-question:before {
content: "\f128";
}
/* line 302, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-info:before {
content: "\f129";
}
/* line 303, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-exclamation:before {
content: "\f12a";
}
/* line 304, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-superscript:before {
content: "\f12b";
}
/* line 305, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-subscript:before {
content: "\f12c";
}
/* line 306, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-eraser:before {
content: "\f12d";
}
/* line 307, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-puzzle-piece:before {
content: "\f12e";
}
/* line 308, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-microphone:before {
content: "\f130";
}
/* line 309, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-microphone-slash:before {
content: "\f131";
}
/* line 310, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-shield:before {
content: "\f132";
}
/* line 311, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-calendar-o:before {
content: "\f133";
}
/* line 312, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-fire-extinguisher:before {
content: "\f134";
}
/* line 313, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-rocket:before {
content: "\f135";
}
/* line 314, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-maxcdn:before {
content: "\f136";
}
/* line 315, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-chevron-circle-left:before {
content: "\f137";
}
/* line 316, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-chevron-circle-right:before {
content: "\f138";
}
/* line 317, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-chevron-circle-up:before {
content: "\f139";
}
/* line 318, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-chevron-circle-down:before {
content: "\f13a";
}
/* line 319, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-html5:before {
content: "\f13b";
}
/* line 320, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-css3:before {
content: "\f13c";
}
/* line 321, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-anchor:before {
content: "\f13d";
}
/* line 322, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-unlock-alt:before {
content: "\f13e";
}
/* line 323, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-bullseye:before {
content: "\f140";
}
/* line 324, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-ellipsis-h:before {
content: "\f141";
}
/* line 325, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-ellipsis-v:before {
content: "\f142";
}
/* line 326, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-rss-square:before {
content: "\f143";
}
/* line 327, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-play-circle:before {
content: "\f144";
}
/* line 328, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-ticket:before {
content: "\f145";
}
/* line 329, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-minus-square:before {
content: "\f146";
}
/* line 330, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-minus-square-o:before {
content: "\f147";
}
/* line 331, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-level-up:before {
content: "\f148";
}
/* line 332, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-level-down:before {
content: "\f149";
}
/* line 333, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-check-square:before {
content: "\f14a";
}
/* line 334, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-pencil-square:before {
content: "\f14b";
}
/* line 335, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-external-link-square:before {
content: "\f14c";
}
/* line 336, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-share-square:before {
content: "\f14d";
}
/* line 337, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-compass:before {
content: "\f14e";
}
/* line 339, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
content: "\f150";
}
/* line 341, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
content: "\f151";
}
/* line 343, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
content: "\f152";
}
/* line 345, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-euro:before,
.fa-eur:before {
content: "\f153";
}
/* line 346, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-gbp:before {
content: "\f154";
}
/* line 348, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-dollar:before,
.fa-usd:before {
content: "\f155";
}
/* line 350, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-rupee:before,
.fa-inr:before {
content: "\f156";
}
/* line 354, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
content: "\f157";
}
/* line 357, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
content: "\f158";
}
/* line 359, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-won:before,
.fa-krw:before {
content: "\f159";
}
/* line 361, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-bitcoin:before,
.fa-btc:before {
content: "\f15a";
}
/* line 362, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-file:before {
content: "\f15b";
}
/* line 363, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-file-text:before {
content: "\f15c";
}
/* line 364, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-sort-alpha-asc:before {
content: "\f15d";
}
/* line 365, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-sort-alpha-desc:before {
content: "\f15e";
}
/* line 366, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-sort-amount-asc:before {
content: "\f160";
}
/* line 367, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-sort-amount-desc:before {
content: "\f161";
}
/* line 368, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-sort-numeric-asc:before {
content: "\f162";
}
/* line 369, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-sort-numeric-desc:before {
content: "\f163";
}
/* line 370, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-thumbs-up:before {
content: "\f164";
}
/* line 371, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-thumbs-down:before {
content: "\f165";
}
/* line 372, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-youtube-square:before {
content: "\f166";
}
/* line 373, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-youtube:before {
content: "\f167";
}
/* line 374, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-xing:before {
content: "\f168";
}
/* line 375, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-xing-square:before {
content: "\f169";
}
/* line 376, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-youtube-play:before {
content: "\f16a";
}
/* line 377, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-dropbox:before {
content: "\f16b";
}
/* line 378, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-stack-overflow:before {
content: "\f16c";
}
/* line 379, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-instagram:before {
content: "\f16d";
}
/* line 380, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-flickr:before {
content: "\f16e";
}
/* line 381, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-adn:before {
content: "\f170";
}
/* line 382, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-bitbucket:before {
content: "\f171";
}
/* line 383, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-bitbucket-square:before {
content: "\f172";
}
/* line 384, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-tumblr:before {
content: "\f173";
}
/* line 385, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-tumblr-square:before {
content: "\f174";
}
/* line 386, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-down:before {
content: "\f175";
}
/* line 387, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-up:before {
content: "\f176";
}
/* line 388, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-left:before {
content: "\f177";
}
/* line 389, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-right:before {
content: "\f178";
}
/* line 390, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-apple:before {
content: "\f179";
}
/* line 391, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-windows:before {
content: "\f17a";
}
/* line 392, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-android:before {
content: "\f17b";
}
/* line 393, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-linux:before {
content: "\f17c";
}
/* line 394, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-dribbble:before {
content: "\f17d";
}
/* line 395, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-skype:before {
content: "\f17e";
}
/* line 396, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-foursquare:before {
content: "\f180";
}
/* line 397, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-trello:before {
content: "\f181";
}
/* line 398, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-female:before {
content: "\f182";
}
/* line 399, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-male:before {
content: "\f183";
}
/* line 400, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-gittip:before {
content: "\f184";
}
/* line 401, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-sun-o:before {
content: "\f185";
}
/* line 402, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-moon-o:before {
content: "\f186";
}
/* line 403, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-archive:before {
content: "\f187";
}
/* line 404, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-bug:before {
content: "\f188";
}
/* line 405, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-vk:before {
content: "\f189";
}
/* line 406, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-weibo:before {
content: "\f18a";
}
/* line 407, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-renren:before {
content: "\f18b";
}
/* line 408, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-pagelines:before {
content: "\f18c";
}
/* line 409, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-stack-exchange:before {
content: "\f18d";
}
/* line 410, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-o-right:before {
content: "\f18e";
}
/* line 411, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-o-left:before {
content: "\f190";
}
/* line 413, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
content: "\f191";
}
/* line 414, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-dot-circle-o:before {
content: "\f192";
}
/* line 415, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-wheelchair:before {
content: "\f193";
}
/* line 416, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-vimeo-square:before {
content: "\f194";
}
/* line 418, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-turkish-lira:before,
.fa-try:before {
content: "\f195";
}
/* line 419, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-plus-square-o:before {
content: "\f196";
}
/* line 420, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-space-shuttle:before {
content: "\f197";
}
/* line 421, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-slack:before {
content: "\f198";
}
/* line 422, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-envelope-square:before {
content: "\f199";
}
/* line 423, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-wordpress:before {
content: "\f19a";
}
/* line 424, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-openid:before {
content: "\f19b";
}
/* line 427, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
content: "\f19c";
}
/* line 429, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-mortar-board:before,
.fa-graduation-cap:before {
content: "\f19d";
}
/* line 430, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-yahoo:before {
content: "\f19e";
}
/* line 431, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-google:before {
content: "\f1a0";
}
/* line 432, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-reddit:before {
content: "\f1a1";
}
/* line 433, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-reddit-square:before {
content: "\f1a2";
}
/* line 434, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-stumbleupon-circle:before {
content: "\f1a3";
}
/* line 435, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-stumbleupon:before {
content: "\f1a4";
}
/* line 436, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-delicious:before {
content: "\f1a5";
}
/* line 437, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-digg:before {
content: "\f1a6";
}
/* line 438, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-pied-piper:before {
content: "\f1a7";
}
/* line 439, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-pied-piper-alt:before {
content: "\f1a8";
}
/* line 440, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-drupal:before {
content: "\f1a9";
}
/* line 441, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-joomla:before {
content: "\f1aa";
}
/* line 442, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-language:before {
content: "\f1ab";
}
/* line 443, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-fax:before {
content: "\f1ac";
}
/* line 444, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-building:before {
content: "\f1ad";
}
/* line 445, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-child:before {
content: "\f1ae";
}
/* line 446, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-paw:before {
content: "\f1b0";
}
/* line 447, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-spoon:before {
content: "\f1b1";
}
/* line 448, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-cube:before {
content: "\f1b2";
}
/* line 449, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-cubes:before {
content: "\f1b3";
}
/* line 450, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-behance:before {
content: "\f1b4";
}
/* line 451, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-behance-square:before {
content: "\f1b5";
}
/* line 452, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-steam:before {
content: "\f1b6";
}
/* line 453, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-steam-square:before {
content: "\f1b7";
}
/* line 454, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-recycle:before {
content: "\f1b8";
}
/* line 456, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-automobile:before,
.fa-car:before {
content: "\f1b9";
}
/* line 458, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-cab:before,
.fa-taxi:before {
content: "\f1ba";
}
/* line 459, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-tree:before {
content: "\f1bb";
}
/* line 460, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-spotify:before {
content: "\f1bc";
}
/* line 461, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-deviantart:before {
content: "\f1bd";
}
/* line 462, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-soundcloud:before {
content: "\f1be";
}
/* line 463, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-database:before {
content: "\f1c0";
}
/* line 464, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-file-pdf-o:before {
content: "\f1c1";
}
/* line 465, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-file-word-o:before {
content: "\f1c2";
}
/* line 466, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-file-excel-o:before {
content: "\f1c3";
}
/* line 467, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-file-powerpoint-o:before {
content: "\f1c4";
}
/* line 470, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
content: "\f1c5";
}
/* line 472, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-file-zip-o:before,
.fa-file-archive-o:before {
content: "\f1c6";
}
/* line 474, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-file-sound-o:before,
.fa-file-audio-o:before {
content: "\f1c7";
}
/* line 476, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-file-movie-o:before,
.fa-file-video-o:before {
content: "\f1c8";
}
/* line 477, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-file-code-o:before {
content: "\f1c9";
}
/* line 478, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-vine:before {
content: "\f1ca";
}
/* line 479, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-codepen:before {
content: "\f1cb";
}
/* line 480, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-jsfiddle:before {
content: "\f1cc";
}
/* line 485, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
content: "\f1cd";
}
/* line 486, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-circle-o-notch:before {
content: "\f1ce";
}
/* line 488, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-ra:before,
.fa-rebel:before {
content: "\f1d0";
}
/* line 490, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-ge:before,
.fa-empire:before {
content: "\f1d1";
}
/* line 491, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-git-square:before {
content: "\f1d2";
}
/* line 492, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-git:before {
content: "\f1d3";
}
/* line 493, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-hacker-news:before {
content: "\f1d4";
}
/* line 494, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-tencent-weibo:before {
content: "\f1d5";
}
/* line 495, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-qq:before {
content: "\f1d6";
}
/* line 497, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-wechat:before,
.fa-weixin:before {
content: "\f1d7";
}
/* line 499, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-send:before,
.fa-paper-plane:before {
content: "\f1d8";
}
/* line 501, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-send-o:before,
.fa-paper-plane-o:before {
content: "\f1d9";
}
/* line 502, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-history:before {
content: "\f1da";
}
/* line 503, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-circle-thin:before {
content: "\f1db";
}
/* line 504, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-header:before {
content: "\f1dc";
}
/* line 505, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-paragraph:before {
content: "\f1dd";
}
/* line 506, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-sliders:before {
content: "\f1de";
}
/* line 507, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-share-alt:before {
content: "\f1e0";
}
/* line 508, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-share-alt-square:before {
content: "\f1e1";
}
/* line 509, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-bomb:before {
content: "\f1e2";
}
/* line 511, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
content: "\f1e3";
}
/* line 512, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-tty:before {
content: "\f1e4";
}
/* line 513, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-binoculars:before {
content: "\f1e5";
}
/* line 514, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-plug:before {
content: "\f1e6";
}
/* line 515, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-slideshare:before {
content: "\f1e7";
}
/* line 516, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-twitch:before {
content: "\f1e8";
}
/* line 517, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-yelp:before {
content: "\f1e9";
}
/* line 518, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-newspaper-o:before {
content: "\f1ea";
}
/* line 519, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-wifi:before {
content: "\f1eb";
}
/* line 520, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-calculator:before {
content: "\f1ec";
}
/* line 521, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-paypal:before {
content: "\f1ed";
}
/* line 522, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-google-wallet:before {
content: "\f1ee";
}
/* line 523, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-cc-visa:before {
content: "\f1f0";
}
/* line 524, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-cc-mastercard:before {
content: "\f1f1";
}
/* line 525, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-cc-discover:before {
content: "\f1f2";
}
/* line 526, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-cc-amex:before {
content: "\f1f3";
}
/* line 527, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-cc-paypal:before {
content: "\f1f4";
}
/* line 528, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-cc-stripe:before {
content: "\f1f5";
}
/* line 529, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-bell-slash:before {
content: "\f1f6";
}
/* line 530, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-bell-slash-o:before {
content: "\f1f7";
}
/* line 531, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-trash:before {
content: "\f1f8";
}
/* line 532, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-copyright:before {
content: "\f1f9";
}
/* line 533, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-at:before {
content: "\f1fa";
}
/* line 534, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-eyedropper:before {
content: "\f1fb";
}
/* line 535, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-paint-brush:before {
content: "\f1fc";
}
/* line 536, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-birthday-cake:before {
content: "\f1fd";
}
/* line 537, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-area-chart:before {
content: "\f1fe";
}
/* line 538, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-pie-chart:before {
content: "\f200";
}
/* line 539, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-line-chart:before {
content: "\f201";
}
/* line 540, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-lastfm:before {
content: "\f202";
}
/* line 541, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-lastfm-square:before {
content: "\f203";
}
/* line 542, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-toggle-off:before {
content: "\f204";
}
/* line 543, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-toggle-on:before {
content: "\f205";
}
/* line 544, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-bicycle:before {
content: "\f206";
}
/* line 545, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-bus:before {
content: "\f207";
}
/* line 546, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-ioxhost:before {
content: "\f208";
}
/* line 547, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-angellist:before {
content: "\f209";
}
/* line 548, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-cc:before {
content: "\f20a";
}
/* line 551, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
content: "\f20b";
}
/* line 552, src/font-awesome/stylesheets/font-awesome/_icons.scss */
.fa-meanpath:before {
content: "\f20c";
}
/* line 6, src/main.scss */
.container h1.title {
text-align: center;
margin-top: 0px;
}
/* line 12, src/main.scss */
.box {
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
width: 100%;
height: 100%;
padding: 15px;
margin-top: 20px;
}
/* line 20, src/main.scss */
.rank-list {
list-style: none;
margin: 0px;
}
/* line 23, src/main.scss */
.rank-list .warrior {
width: 100%;
margin: 10px 0px;
}
/* line 26, src/main.scss */
.rank-list .warrior img.avatar {
width: 100%;
border: 1px solid #ccc;
border-radius: 5px;
}
/* line 31, src/main.scss */
.rank-list .warrior h1.name {
margin-top: 0;
margin-bottom: 0;
font-size: 20px;
font-weight: bold;
font-family: "Lato","Helvetica Neue","Helvetica",Arial;
}
/* line 38, src/main.scss */
.rank-list .warrior h6 {
font-size: 80%;
}
/* line 41, src/main.scss */
.rank-list .warrior h1.big-honor {
margin: auto;
font-size: 75px;
}
|
multi-site-demo/hfl-core.ui/src/main/content/jcr_root/apps/multi-site-demo/hfl-core/components/content/schedule-tout/schedule-tout.html | HS2-SOLUTIONS/hs2-aem-commons | <div class="cmp-schedule-tout"
data-sly-use.template="core/wcm/components/commons/v1/templates.html"
data-sly-use.scheduleTout="com.hs2solutions.aem.hfl.core.models.ScheduleTout"
data-sly-test.hasContent="${scheduleTout.message && scheduleTout.ctaUrl && scheduleTout.ctaLabel}">
<img data-sly-test.logoSrc="${scheduleTout.logoSrc}" class="logo" src="${logoSrc}" alt="Logo"/>
<h3>${scheduleTout.message}</h3>
<a href="${scheduleTout.ctaUrl}">${scheduleTout.ctaLabel}</a>
</div>
<sly data-sly-call="${template.placeholder @ isEmpty=!hasContent, classAppend='author-msg'}"></sly>
|
site/demo/two-up/two-up.html | matt-harris/outline-mail | <!DOCTYPE html>
<html lang="en">
<head>
<title>Outline Mail - making html email easy</title>
<meta http-equiv="Content-Type" content="text/html;" charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<style type="text/css">
/* CLIENT-SPECIFIC STYLES */
#outlook a {
padding: 0;
}
.ReadMsgBody {
width: 100%;
}
.ExternalClass {
width: 100%;
}
.ExternalClass,
.ExternalClass p,
.ExternalClass span,
.ExternalClass font,
.ExternalClass td,
.ExternalClass div,
.ExternalClass * {
line-height: 100%;
}
body,
table,
td,
a {
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
table,
td {
mso-table-lspace: 0pt;
mso-table-rspace: 0pt;
}
img {
-ms-interpolation-mode: bicubic;
}
/* RESET STYLES */
body {
height: 100% !important;
margin: 0 !important;
padding: 0 !important;
width: 100% !important;
}
img {
border: 0;
height: auto;
line-height: 100%;
outline: none;
text-decoration: none;
}
table {
border-collapse: collapse !important;
}
/* Remove margin on email wrapper in Android 4.4 KitKat */
/* See more at: https://blog.jmwhite.co.uk/2015/09/19/revealing-why-emails-appear-off-centre-in-android-4-4-kitkat/ */
div[style*='margin: 16px 0'] {
margin: 0 !important;
font-size: 100% !important;
}
/* Remove ios blue links */
a[x-apple-data-detectors] {
color: inherit !important;
text-decoration: none !important;
font-size: inherit !important;
font-family: inherit !important;
font-weight: inherit !important;
line-height: inherit !important;
}
/* Outline styles */
@media only screen and (max-width: 599px) {
.content-table {
width: 100% !important;
}
img[class='img-max'] {
width: 100% !important;
height: auto !important;
}
table[class='mobile-button-wrap'] {
margin: 0 auto;
width: 100% !important;
}
a[class='mobile-button'] {
width: 80% !important;
padding: 8px !important;
border: 0 !important;
}
.mobile-align-center {
text-align: center !important;
margin-right: auto;
margin-left: auto;
}
}
</style>
</head>
<body style="margin: 0 !important; padding: 0 !important">
<!-- hidden preheader text - Remember to change it! -->
<div
style="
display: none;
font-size: 1px;
color: #fefefe;
line-height: 1px;
font-family: Helvetica, Arial, sans-serif;
max-height: 0px;
max-width: 0px;
opacity: 0;
overflow: hidden;
mso-hide: all;
"
>
Outline mail - making html email easy.
</div>
<!-- Two up -->
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td style="padding: 32px 0 0 0" bgcolor="#ffffff" align="center">
<table
class="content-table"
align="center"
border="0"
cellpadding="0"
cellspacing="0"
width="600"
>
<tr>
<td style="padding: 0 16px 0 16px" align="center" valign="top">
<!-- Two column -->
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td>
<!-- content left -->
<table
class="content-table"
border="0"
cellpadding="0"
cellspacing="0"
width="48%"
align="left"
>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="left">
<a href="#" target="_blank">
<img
style="
display: block;
font-family: Helvetica, Arial, sans-serif;
color: #333333;
font-size: 14px;
width: 272px;
height: 153px;
"
class="img-max"
src="http://outline-mail.surge.sh/img/16x9-img-placeholder.png"
alt="Outline Mail"
width="272"
height="153"
border="0"
/>
</a>
</td>
</tr>
<tr>
<td
style="
padding: 8px 0 8px 0;
color: #333333;
font-family: Helvetica, Arial, sans-serif;
font-size: 20px;
font-weight: normal;
line-height: 30px;
"
align="left"
>
A small headline here please
</td>
</tr>
<tr>
<td
style="
color: #333333;
font-family: Helvetica, Arial, sans-serif;
font-size: 16px;
font-weight: normal;
line-height: 24px;
padding: 0 0 32px 0;
"
align="left"
>
Outline is simple CSS starter boilerplate for any new web project.
It can include a <a style="color: #38a1d6" href="#">text link</a>.
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- /content left -->
<!-- content right -->
<table
class="content-table"
border="0"
cellpadding="0"
cellspacing="0"
width="48%"
align="right"
>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="left">
<a href="#" target="_blank">
<img
style="
display: block;
font-family: Helvetica, Arial, sans-serif;
color: #333333;
font-size: 14px;
width: 272px;
height: 153px;
"
class="img-max"
src="http://outline-mail.surge.sh/img/16x9-img-placeholder.png"
alt="Outline Mail"
width="272"
height="153"
border="0"
/>
</a>
</td>
</tr>
<tr>
<td
style="
padding: 8px 0 8px 0;
color: #333333;
font-family: Helvetica, Arial, sans-serif;
font-size: 20px;
font-weight: normal;
line-height: 30px;
"
align="left"
>
A small headline here please
</td>
</tr>
<tr>
<td
style="
color: #333333;
font-family: Helvetica, Arial, sans-serif;
font-size: 16px;
font-weight: normal;
line-height: 24px;
padding: 0 0 32px 0;
"
align="left"
>
Outline is simple CSS starter boilerplate for any new web project.
It can include a <a style="color: #38a1d6" href="#">text link</a>.
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- /content right -->
</td>
</tr>
</table>
<!-- /Two column -->
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- /Two up -->
</body>
</html>
|
page.html | lanig35/flask-app | <html>
<head>
<title> Pierre </title>
</head>
<body>
<table>
<tr><td>Brunet</td><td>Vaillant</td></tr>
<tr><td>Vallee</td><td>Jacques</td></tr>
<tr><td>Simon S.A.S.</td><td>Robin</td></tr>
<tr><td>Moreno</td><td>Gregoire-sur-Blanchard</td></tr>
</table>
</body>
</html> |
Public/css/normalizeButton.css | azorlandoaz/Reto-2 | /*! normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */
html{font-family:sans-serif;-ms-text-size-adjust:100%;
-webkit-text-size-adjust:100%
}
body{margin:0}
article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,
summary{display:block}audio,canvas,progress,video{display:inline-block}
audio:not([controls]){display:none;height:0}progress{vertical-align:baseline}
template,[hidden]{display:none}a{background-color:transparent}
a:active,a:hover{outline-width:0}
abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}
b,strong{font-weight:inherit}b,strong{font-weight:bolder}dfn{font-style:italic}
h1{font-size:2em;margin:0.67em 0}mark{background-color:#ff0;color:#000}
small{font-size:80%}sub,
sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}
svg:not(:root){overflow:hidden}code,kbd,pre,
samp{font-family:monospace, monospace;font-size:1em}
figure{margin:1em 40px}
hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}
button,input,select,textarea{font:inherit;margin:0}optgroup{font-weight:bold}button,input,
select{overflow:visible}button,select{text-transform:none}
button,[type="button"],[type="reset"],[type="submit"]{cursor:pointer}[disabled]{cursor:default}
button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}
button:-moz-focusring,input:-moz-focusring{outline:1px dotted ButtonText}
fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}
legend{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}
textarea{overflow:auto}[type="checkbox"],[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}
[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}
|
_nav_menu_items/2016-08-16-discord.html | TEKaholics/tekaholics.github.io | ---
layout: nav_menu_item
title: Discord
date: 2016-08-16 01:48:01.000000000 -04:00
type: nav_menu_item
published: true
status: publish
categories: []
tags: []
meta:
_publicize_pending: '1'
_menu_item_type: custom
_menu_item_menu_item_parent: '0'
_menu_item_object_id: '3108'
_menu_item_object: custom
_menu_item_target: ''
_menu_item_classes: a:1:{i:0;s:0:"";}
_menu_item_xfn: ''
_menu_item_url: https://discord.gg/ZFK7wn9
author:
login: jrstanofficial
email: jrstanofficial@gmail.com
display_name: jrstanOfficial
first_name: James R.
last_name: Stan.
---
|
releases/2.1/javawsdocs/edu/sdsc/inca/util/RpmPackage.RpmLead.html | IncaProject/IncaProject.github.io | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.4.2_13) on Tue Jul 31 13:21:17 PDT 2007 -->
<TITLE>
RpmPackage.RpmLead
</TITLE>
<META NAME="keywords" CONTENT="edu.sdsc.inca.util.RpmPackage.RpmLead class">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="RpmPackage.RpmLead";
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../edu/sdsc/inca/util/RpmPackage.html" title="class in edu.sdsc.inca.util"><B>PREV CLASS</B></A>
<A HREF="../../../../edu/sdsc/inca/util/RpmPackage.RpmProperty.html" title="class in edu.sdsc.inca.util"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="RpmPackage.RpmLead.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#methods_inherited_from_class_java.lang.Object">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | METHOD</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
edu.sdsc.inca.util</FONT>
<BR>
Class RpmPackage.RpmLead</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><B>edu.sdsc.inca.util.RpmPackage.RpmLead</B>
</PRE>
<DL>
<DT><B>Enclosing class:</B><DD><A HREF="../../../../edu/sdsc/inca/util/RpmPackage.html" title="class in edu.sdsc.inca.util">RpmPackage</A></DD>
</DL>
<HR>
<DL>
<DT>public class <B>RpmPackage.RpmLead</B><DT>extends java.lang.Object</DL>
<P>
The lead of an RPM package is a fixed-length section that appears in the
first 96 bytes. Its use has been largely abandoned; the information
contained within the lead is now duplicated, more flexibly, in the
package header and signature.
<P>
<P>
<HR>
<P>
<!-- ======== NESTED CLASS SUMMARY ======== -->
<!-- =========== FIELD SUMMARY =========== -->
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../edu/sdsc/inca/util/RpmPackage.RpmLead.html#RpmPackage.RpmLead(java.io.DataInputStream)">RpmPackage.RpmLead</A></B>(java.io.DataInputStream dis)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TD><B>Methods inherited from class java.lang.Object</B></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="RpmPackage.RpmLead(java.io.DataInputStream)"><!-- --></A><H3>
RpmPackage.RpmLead</H3>
<PRE>
public <B>RpmPackage.RpmLead</B>(java.io.DataInputStream dis)
throws java.io.IOException</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../edu/sdsc/inca/util/RpmPackage.html" title="class in edu.sdsc.inca.util"><B>PREV CLASS</B></A>
<A HREF="../../../../edu/sdsc/inca/util/RpmPackage.RpmProperty.html" title="class in edu.sdsc.inca.util"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="RpmPackage.RpmLead.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#methods_inherited_from_class_java.lang.Object">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | METHOD</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
people/yi5506yo.html | slowe/panelshows | <html>
<head>
<title>Archie Norman's panel show appearances</title>
<script type="text/javascript" src="../common.js"></script>
<link rel="stylesheet" media="all" href="../style.css" type="text/css"/>
<script type="text/javascript" src="../people.js"></script>
<!--#include virtual="head.txt" -->
</head>
<body>
<!--#include virtual="nav.txt" -->
<div class="page">
<h1>Archie Norman's panel show appearances</h1>
<p>Archie Norman (born 1954-05-01<sup><a href="https://en.wikipedia.org/wiki/Archie_Norman">[ref]</a></sup>) has appeared in <span class="total">2</span> episodes between 1997-1999. <a href="https://en.wikipedia.org/wiki/Archie_Norman">Archie Norman on Wikipedia</a>.</p>
<div class="performerholder">
<table class="performer">
<tr style="vertical-align:bottom;">
<td><div style="height:100px;" class="performances male" title="1"></div><span class="year">1997</span></td>
<td><div style="height:0px;" class="performances male" title=""></div><span class="year">1998</span></td>
<td><div style="height:100px;" class="performances male" title="1"></div><span class="year">1999</span></td>
</tr>
</table>
</div>
<ol class="episodes">
<li><strong>1999-11-11</strong> / <a href="../shows/question-time.html">Question Time</a></li>
<li><strong>1997-10-09</strong> / <a href="../shows/question-time.html">Question Time</a></li>
</ol>
</div>
</body>
</html>
|
Design Process.html | vysalisomanchi/vysalisomanchi.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Design Process</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/portfolio-item.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="override-modal-open">
<!-- Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-bottom" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Somanchi Vysali</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li>
<a href="aboutme.html">About me</a>
</li>
<li>
<a href="projectslist.html">Portfolio</a>
</li>
<li>
<a href="resumepage.html">Resume</a>
</li>
<li>
<a href="Contactpage.html">Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Page Content -->
<div class="container">
<!-- Portfolio Item Heading -->
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Design Process
</h1>
</div>
</div>
<!-- /.row -->
<!-- Related Projects Row -->
<div class="row">
<div class="col-lg-12">
<h3 class="page-header">Process</h3>
</div>
<div class="col-sm-3 col-xs-6">
<a href="#">
<!-- <img class="img-responsive portfolio-item" src="images/2.jpg" alt=""> -->
<img id="myImg" class="img-responsive portfolio-item" src="design process/1.jpg" width="300" height="200">
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- The Close Button -->
<span class="close" onclick="document.getElementById('myModal').style.display='none'">×</span>
<!-- Modal Content (The Image) -->
<img class="modal-content" id="img01">
<!-- Modal Caption (Image Text) -->
<div id="caption"></div>
</div>
</a>
</div>
<div class="col-sm-3 col-xs-6">
<a href="#">
<!-- <img class="img-responsive portfolio-item" src="http://placehold.it/500x300" alt=""> -->
<img id="myImg2" class="img-responsive portfolio-item" src="design process/2.jpg" width="300" height="200">
</a>
</div>
<div class="col-sm-3 col-xs-6">
<a href="#">
<!-- <img class="img-responsive portfolio-item" src="http://placehold.it/500x300" alt=""> -->
<img id="myImg3" class="img-responsive portfolio-item" src="design process/3.jpg" width="300" height="200">
</a>
</div>
<div class="col-sm-3 col-xs-6">
<a href="#">
<!-- <img class="img-responsive portfolio-item" src="http://placehold.it/500x300" alt=""> -->
<img id="myImg4" class="img-responsive portfolio-item" src="design process/4.jpg" width="300" height="200">
</a>
</div>
</div>
<!-- /.row -->
<!-- Portfolio Item Row -->
<div class="row">
<div class="col-md-8">
<!-- <img class="img-responsive" src="img/8 final.jpg" alt=""> -->
<img id="myImg8" class="img-responsive portfolio-item" src="design process/5.jpg">
</div>
<div class="col-md-4">
<h3>Project Description</h3>
<p>This is a shoe rack made by me, inspired by the problems I and my friends personally face in the hostel we reside in. The rack is currently in use and has been of great help.</p>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Footer -->
<footer>
<div class="row">
<div class="col-lg-12">
<p></p>
</div>
</div>
<!-- /.row -->
</footer>
</div>
<!-- /.container -->
<style type="text/css">
/* Style the Image Used to Trigger the Modal */
#myImg {
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}
#myImg:hover {opacity: 0.7;}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
/* Modal Content (Image) */
.modal-content {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
}
/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
text-align: center;
color: #ccc;
padding: 10px 0;
height: 150px;
}
/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
-webkit-animation-name: zoom;
-webkit-animation-duration: 0.6s;
animation-name: zoom;
animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
from {-webkit-transform:scale(0)}
to {-webkit-transform:scale(1)}
}
@keyframes zoom {
from {transform:scale(0)}
to {transform:scale(1)}
}
/* The Close Button */
.close {
position: absolute;
top: 15px;
right: 35px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
}
.close:hover,
.close:focus {
color: #bbb;
text-decoration: none;
cursor: pointer;
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
.modal-content {
width: 100%;
}
}
.override-modal-open {
overflow-y: scroll;
}
</style>
<script>
// Get the modal
var modal = document.getElementById('myModal');
// Get the image and insert it inside the modal - use its "alt" text as a caption
var img = document.getElementById('myImg');
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function(){
modal.style.display = "block";
modalImg.src = this.src;
captionText.innerHTML = this.alt;
$('body').css('overflow','hidden')
}
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
</script>
<script>
// Get the modal
var modal = document.getElementById('myModal');
// Get the image and insert it inside the modal - use its "alt" text as a caption
var img = document.getElementById('myImg2');
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function(){
modal.style.display = "block";
modalImg.src = this.src;
captionText.innerHTML = this.alt;
$('body').css('overflow','hidden')
}
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
</script>
<script>
// Get the modal
var modal = document.getElementById('myModal');
// Get the image and insert it inside the modal - use its "alt" text as a caption
var img = document.getElementById('myImg3');
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function(){
modal.style.display = "block";
modalImg.src = this.src;
captionText.innerHTML = this.alt;
$('body').css('overflow','hidden')
}
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
</script>
<script>
// Get the modal
var modal = document.getElementById('myModal');
// Get the image and insert it inside the modal - use its "alt" text as a caption
var img = document.getElementById('myImg4');
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function(){
modal.style.display = "block";
modalImg.src = this.src;
captionText.innerHTML = this.alt;
$('body').css('overflow','hidden')
}
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
</script>
<script>
// Get the modal
var modal = document.getElementById('myModal');
// Get the image and insert it inside the modal - use its "alt" text as a caption
var img = document.getElementById('myImg5');
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function(){
modal.style.display = "block";
modalImg.src = this.src;
captionText.innerHTML = this.alt;
$('body').css('overflow','hidden')
}
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
</script>
<script>
// Get the modal
var modal = document.getElementById('myModal');
// Get the image and insert it inside the modal - use its "alt" text as a caption
var img = document.getElementById('myImg6');
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function(){
modal.style.display = "block";
modalImg.src = this.src;
captionText.innerHTML = this.alt;
$('body').css('overflow','hidden')
}
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
</script>
<script>
// Get the modal
var modal = document.getElementById('myModal');
// Get the image and insert it inside the modal - use its "alt" text as a caption
var img = document.getElementById('myImg7');
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function(){
modal.style.display = "block";
modalImg.src = this.src;
captionText.innerHTML = this.alt;
$('body').css('overflow','hidden')
}
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
</script>
<script>
// Get the modal
var modal = document.getElementById('myModal');
// Get the image and insert it inside the modal - use its "alt" text as a caption
var img = document.getElementById('myImg8');
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function(){
modal.style.display = "block";
modalImg.src = this.src;
captionText.innerHTML = this.alt;
$('body').css('overflow','hidden')
}
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
$('body').css('overflow','auto')
}
</script>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>
|
src/common/view/upload.html | Alex-D/espace-classe | <div class="m-upload">
<input type="file" accept=".jpg,.jpeg,.png">
<img ng-src="{{ ngModel }}" alt="" ng-show="ngModel">
</div> |
:docs/data-vis/index.html | huileiw/huileiw.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Recipes Data Science Project</title>
<!-- Bootstrap Core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
<!-- Plugin CSS -->
<link href="vendor/magnific-popup/magnific-popup.css" rel="stylesheet">
<!-- Theme CSS -->
<link href="css/creative.min.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top">
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="#page-top"></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a class="page-scroll" href="#about">About</a>
</li>
<!-- <li>
<a class="page-scroll" href="#services">Services</a>
</li>
<li>
<a class="page-scroll" href="#portfolio">Portfolio</a>
</li> -->
<li>
<a class="page-scroll" href="#contact">Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<header>
<div class="header-content">
<div class="header-content-inner">
<h1 id="homeHeading">Recipes and Ingredients</h1>
<hr>
<p>A data scientist's take on what makes good recipes</p>
<a href="#services" class="btn btn-primary btn-xl page-scroll">Find Out More</a>
</div>
</div>
</header>
<!-- <section class="bg-primary" id="about">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h2 class="section-heading">We've got what you need!</h2>
<hr class="light">
<p class="text-faded">Start Bootstrap has everything you need to get your new website up and running in no time! All of the templates and themes on Start Bootstrap are open source, free to download, and easy to use. No strings attached!</p>
<a href="#services" class="page-scroll btn btn-default btn-xl sr-button">Get Started!</a>
</div>
</div>
</div>
</section> -->
<section id="services">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Recipes in the ingredient space</h2>
<hr class="primary">
</div>
</div>
</div>
<div style="text-align:center;">
<iframe src="./scatter.html" width="1000" height="530" frameBorder="0" align="middle">your browser does not support iframe</iframe>
</div>
</section>
<section id="services2">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<!-- <h2 class="section-heading">Recipes in the ingredient space</h2>
<hr class="primary"> -->
</div>
</div>
</div>
<div style="text-align:center;">
<iframe src="./matrix.html" width="1100" height="1500" frameBorder="0" align="middle">your browser does not support iframe</iframe>
</div>
</section>
<!-- <section class="no-padding" id="portfolio">
<div class="container-fluid">
<div class="row no-gutter popup-gallery">
<div class="col-lg-4 col-sm-6">
<a href="img/portfolio/fullsize/1.jpg" class="portfolio-box">
<img src="img/portfolio/thumbnails/1.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="img/portfolio/fullsize/2.jpg" class="portfolio-box">
<img src="img/portfolio/thumbnails/2.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="img/portfolio/fullsize/3.jpg" class="portfolio-box">
<img src="img/portfolio/thumbnails/3.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="img/portfolio/fullsize/4.jpg" class="portfolio-box">
<img src="img/portfolio/thumbnails/4.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="img/portfolio/fullsize/5.jpg" class="portfolio-box">
<img src="img/portfolio/thumbnails/5.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="img/portfolio/fullsize/6.jpg" class="portfolio-box">
<img src="img/portfolio/thumbnails/6.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<aside class="bg-dark">
<div class="container text-center">
<div class="call-to-action">
<h2>Free Download at Start Bootstrap!</h2>
<a href="http://startbootstrap.com/template-overviews/creative/" class="btn btn-default btn-xl sr-button">Download Now!</a>
</div>
</div>
</aside>
<section id="contact">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h2 class="section-heading">Let's Get In Touch!</h2>
<hr class="primary">
<p>Ready to start your next project with us? That's great! Give us a call or send us an email and we will get back to you as soon as possible!</p>
</div>
<div class="col-lg-4 col-lg-offset-2 text-center">
<i class="fa fa-phone fa-3x sr-contact"></i>
<p>123-456-6789</p>
</div>
<div class="col-lg-4 text-center">
<i class="fa fa-envelope-o fa-3x sr-contact"></i>
<p><a href="mailto:your-email@your-domain.com">feedback@startbootstrap.com</a></p>
</div>
</div>
</div>
</section> -->
<!-- jQuery -->
<script src="vendor/jquery/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script src="vendor/scrollreveal/scrollreveal.min.js"></script>
<script src="vendor/magnific-popup/jquery.magnific-popup.min.js"></script>
<!-- Theme JavaScript -->
<script src="js/creative.min.js"></script>
</body>
</html>
|
Homework/Web表格表格/index2-01.html | WeiQianQiang/Web1 | <!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<center><h3>健康检查登记表</h3></center>
<h6> 体检时间 年 月 日 体检编号(20 年) 号</h6>
<table border="1" background="images/2.jpg" width="600px" height="400px" align="center" cellpadding="10" cellspacing="0">
<tr>
<td rowspan="2" colspan="1" align="center">姓名</td>
<td rowspan="2" colspan="2" > </td>
<td rowspan="2" colspan="1" >性别</td>
<td rowspan="2">  </td>
<td rowspan="2" colspan="1">年龄</td>
<td rowspan="2"r>  </td>
<td rowspan="2">婚否</td>
<td rowspan="2">  </td>
<td rowspan="2">籍贯</td>
<td rowspan="2">  </td>
<td rowspan="8" colspan="2" align="center">照片</td>
<td rowspan="8" colspan="2" ><center>照片</center></td>
</tr>
<tr>
</tr>
<tr>
<td rowspan="2" colspan="1" align="center">住址</td>
<td rowspan="2" colspan="4"> </td>
<td rowspan="2" align="center">所属单位</td>
<td rowspan="2" colspan="5"> </td>
</tr>
<tr>
</tr>
<tr>
<td rowspan="2" colspan="5">既往史及家族史</td>
<td rowspan="2" colspan="6">家庭地址</td>
</tr>
<tr>
</tr>
<tr>
<td colspan="11">身份证号码</td>
</tr>
<tr>
<td colspan="1" rowspan="26">体格检查</td>
<td colspan="10">既往病史:</td>
</tr>
<tr>
<td rowspan="11">内科</td>
<td rowspan="2" colspan="3">身高 cm</td>
<td rowspan="2" colspan="2">体重 cm</td>
<td rowspan="2" colspan="2">心率 次/分</td>
<td rowspan="2" colspan="4">血压 mmmHg</td>
</tr>
<tr>
</tr>
<tr>
<td rowspan="1" colspan="2">发育</td>
<td colspan="3">   </td>
<td colspan="1">营养</td>
<td colspan="5">   </td>
</tr>
<tr>
</tr>
<tr>
<td colspan="11">头颈部   甲状腺   淋巴腺</td>
</tr>
<tr>
<td colspan="2">胸部</td>
<td colspan="9">       </td>
</tr>
<tr>
<td colspan="3">心脑、血管</td>
<td colspan="5">   </td>
<td colspan="3" rowspan="5">医生意见:<br>     ,<br>
签名</td>
</tr>
<tr>
<td colspan="3">肺</td>
<td colspan="5">   </td>
</tr>
<tr>
<td colspan="3">腹部</td>
<td colspan="5">肝脾</td>
</tr>
<tr>
<td colspan="3">神经系统</td>
<td colspan="5">   </td>
</tr>
<tr>
<td colspan="3">其它</td>
<td colspan="5">   </td>
</tr>
<tr>
<td colspan="1" rowspan="10">五官科</td>
<td colspan="3" rowspan="6" align="center">视力</td>
<td colspan="1" rowspan="2">裸视</td>
<td colspan="1" rowspan="2">左<br/>右</td>
<td colspan="1" rowspan="2">沙眼</td>
<td colspan="2" rowspan="2">   </td>
<td colspan="3" rowspan="10">医师意见:<br>   <br>签名:</td>
</tr>
<tr>
</tr>
<tr>
<td colspan="1" rowspan="4">矫正视力</td>
<td rowspan="4">左<br/>右</td>
<td rowspan="4">辩分力</td>
<td rowspan="4" colspan="2" align="center">正常<br/>色音<br>色弱</td>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
<td colspan="3" rowspan="2">耳</td>>
<td colspan="1" rowspan="2">听力</td>
<td colspan="1" rowspan="2">左右     </td>
<td colspan="1" rowspan="2">耳疾</td>
<td colspan="2" rowspan="2">   </td>
</tr>
<tr>
</tr>
<tr>
<td colspan="3">鼻</td>
<td colspan="2">   </td>
<td colspan="1">喉</td>
<td colspan="2">   </td>
</tr>
<tr>
<td colspan="3">口腔</td>
<td colspan="2">   </td>
<td colspan="1">齿</td>
<td colspan="2">   </td>
</tr>
<tr>
<td rowspan="4">外科</td>
<td colspan="3">脊柱和四肢</td>
<td colspan="5">   </td>
<td colspan="3" rowspan="4">医师意见:<br>   <br>签名:</td>
</tr>
<tr>
<td colspan="3">肛门和外生殖器</td>
<td colspan="5">   </td>
</tr>
<tr>
<td colspan="3">皮肤疾患</td>
<td colspan="5">   </td>
</tr>
<tr>
<td colspan="3">其它</td>
<td colspan="5">   </td>
</tr>
<tr>
<td colspan="1" rowspan="5">实验室检查</td>
<td colspan="12" rowspan="5">     </td>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
</body>
</html>
|
404.html | luisrochadev/luisrochadev.github.io | ---
layout: page
title: "Error 404: Haaaaanh???"
permalink: /404
comments: false
---
<div style="text-align:center;">
<img src="/assets/img/kanye-west-angry.png">
<p>The page you were looking for does not exist.</p>
</div> |
src/partials/vacancies-list/vacancies-list.html | VS-work/vs-website | <ng-template ngFor let-vacancy [ngForOf]="vacancies">
<div *ngIf="vacancy.show" class="vacancy-item col-lg-3 col-md-4 col-sm-6 col-xs-12">
<vacancy-preview [vacancy]="vacancy"></vacancy-preview>
</div>
</ng-template>
|
external/boost_1_59_0/libs/math/doc/html/math_toolkit/stat_tut/weg.html | Franky666/programmiersprachen-raytracer | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Worked Examples</title>
<link rel="stylesheet" href="../../math.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
<link rel="home" href="../../index.html" title="Math Toolkit 2.2.1">
<link rel="up" href="../stat_tut.html" title="Statistical Distributions Tutorial">
<link rel="prev" href="overview/summary.html" title="Summary">
<link rel="next" href="weg/dist_construct_eg.html" title="Distribution Construction Examples">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../boost.png"></td>
<td align="center"><a href="../../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="overview/summary.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../stat_tut.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="weg/dist_construct_eg.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="math_toolkit.stat_tut.weg"></a><a class="link" href="weg.html" title="Worked Examples">Worked Examples</a>
</h3></div></div></div>
<div class="toc"><dl>
<dt><span class="section"><a href="weg/dist_construct_eg.html">Distribution
Construction Examples</a></span></dt>
<dt><span class="section"><a href="weg/st_eg.html">Student's t Distribution
Examples</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="weg/st_eg/tut_mean_intervals.html">Calculating
confidence intervals on the mean with the Students-t distribution</a></span></dt>
<dt><span class="section"><a href="weg/st_eg/tut_mean_test.html">Testing
a sample mean for difference from a "true" mean</a></span></dt>
<dt><span class="section"><a href="weg/st_eg/tut_mean_size.html">Estimating
how large a sample size would have to become in order to give a significant
Students-t test result with a single sample test</a></span></dt>
<dt><span class="section"><a href="weg/st_eg/two_sample_students_t.html">Comparing
the means of two samples with the Students-t test</a></span></dt>
<dt><span class="section"><a href="weg/st_eg/paired_st.html">Comparing
two paired samples with the Student's t distribution</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="weg/cs_eg.html">Chi Squared Distribution
Examples</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="weg/cs_eg/chi_sq_intervals.html">Confidence
Intervals on the Standard Deviation</a></span></dt>
<dt><span class="section"><a href="weg/cs_eg/chi_sq_test.html">Chi-Square
Test for the Standard Deviation</a></span></dt>
<dt><span class="section"><a href="weg/cs_eg/chi_sq_size.html">Estimating
the Required Sample Sizes for a Chi-Square Test for the Standard Deviation</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="weg/f_eg.html">F Distribution Examples</a></span></dt>
<dt><span class="section"><a href="weg/binom_eg.html">Binomial Distribution
Examples</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="weg/binom_eg/binomial_coinflip_example.html">Binomial
Coin-Flipping Example</a></span></dt>
<dt><span class="section"><a href="weg/binom_eg/binomial_quiz_example.html">Binomial
Quiz Example</a></span></dt>
<dt><span class="section"><a href="weg/binom_eg/binom_conf.html">Calculating
Confidence Limits on the Frequency of Occurrence for a Binomial Distribution</a></span></dt>
<dt><span class="section"><a href="weg/binom_eg/binom_size_eg.html">Estimating
Sample Sizes for a Binomial Distribution.</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="weg/geometric_eg.html">Geometric Distribution
Examples</a></span></dt>
<dt><span class="section"><a href="weg/neg_binom_eg.html">Negative Binomial
Distribution Examples</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="weg/neg_binom_eg/neg_binom_conf.html">Calculating
Confidence Limits on the Frequency of Occurrence for the Negative Binomial
Distribution</a></span></dt>
<dt><span class="section"><a href="weg/neg_binom_eg/neg_binom_size_eg.html">Estimating
Sample Sizes for the Negative Binomial.</a></span></dt>
<dt><span class="section"><a href="weg/neg_binom_eg/negative_binomial_example1.html">Negative
Binomial Sales Quota Example.</a></span></dt>
<dt><span class="section"><a href="weg/neg_binom_eg/negative_binomial_example2.html">Negative
Binomial Table Printing Example.</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="weg/normal_example.html">Normal Distribution
Examples</a></span></dt>
<dd><dl><dt><span class="section"><a href="weg/normal_example/normal_misc.html">Some
Miscellaneous Examples of the Normal (Gaussian) Distribution</a></span></dt></dl></dd>
<dt><span class="section"><a href="weg/inverse_chi_squared_eg.html">Inverse
Chi-Squared Distribution Bayes Example</a></span></dt>
<dt><span class="section"><a href="weg/nccs_eg.html">Non Central Chi
Squared Example</a></span></dt>
<dd><dl><dt><span class="section"><a href="weg/nccs_eg/nccs_power_eg.html">Tables
of the power function of the chi<sup>2</sup> test.</a></span></dt></dl></dd>
<dt><span class="section"><a href="weg/error_eg.html">Error Handling
Example</a></span></dt>
<dt><span class="section"><a href="weg/find_eg.html">Find Location and
Scale Examples</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="weg/find_eg/find_location_eg.html">Find
Location (Mean) Example</a></span></dt>
<dt><span class="section"><a href="weg/find_eg/find_scale_eg.html">Find
Scale (Standard Deviation) Example</a></span></dt>
<dt><span class="section"><a href="weg/find_eg/find_mean_and_sd_eg.html">Find
mean and standard deviation example</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="weg/nag_library.html">Comparison with
C, R, FORTRAN-style Free Functions</a></span></dt>
<dt><span class="section"><a href="weg/c_sharp.html">Using the Distributions
from Within C#</a></span></dt>
</dl></div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2006-2010, 2012-2014 Nikhar Agrawal,
Anton Bikineev, Paul A. Bristow, Marco Guazzone, Christopher Kormanyos, Hubert
Holin, Bruno Lalande, John Maddock, Johan Råde, Gautam Sewani, Benjamin Sobotta,
Thijs van den Berg, Daryle Walker and Xiaogang Zhang<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="overview/summary.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../stat_tut.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="weg/dist_construct_eg.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
docs/build/html/index.html | shakefu/MongoAlchemy |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Welcome to MongoAlchemy’s documentation! — MongoAlchemy v0.8 documentation</title>
<link rel="stylesheet" href="_static/default.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
VERSION: '0.8',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<link rel="top" title="MongoAlchemy v0.8 documentation" href="#" />
<link rel="next" title="MongoAlchemy Tutorial" href="tutorial.html" />
</head>
<body>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="tutorial.html" title="MongoAlchemy Tutorial"
accesskey="N">next</a> |</li>
<li><a href="#">MongoAlchemy v0.8 documentation</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="welcome-to-mongoalchemy-s-documentation">
<h1>Welcome to MongoAlchemy’s documentation!<a class="headerlink" href="#welcome-to-mongoalchemy-s-documentation" title="Permalink to this headline">¶</a></h1>
<div class="section" id="contents">
<h2>Contents:<a class="headerlink" href="#contents" title="Permalink to this headline">¶</a></h2>
<div class="toctree-wrapper compound">
<ul>
<li class="toctree-l1"><a class="reference internal" href="tutorial.html">MongoAlchemy Tutorial</a><ul class="simple">
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="advanced_modeling.html">Advanced Modeling — Namespaces and Forward/Self-References</a></li>
<li class="toctree-l1"><a class="reference internal" href="api/index.html">API documentation</a><ul>
<li class="toctree-l2"><a class="reference internal" href="api/session.html">Session</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/schema/index.html">Schema — Document-Object Mapper and Schema Definitions</a><ul>
<li class="toctree-l3"><a class="reference internal" href="api/schema/document.html"><tt class="docutils literal"><span class="pre">document</span></tt></a><ul class="simple">
</ul>
</li>
<li class="toctree-l3"><a class="reference internal" href="api/schema/fields.html"><tt class="docutils literal"><span class="pre">fields</span></tt></a><ul class="simple">
</ul>
</li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="api/expressions/index.html">Expression Language — Querying and Updating</a><ul>
<li class="toctree-l3"><a class="reference internal" href="api/expressions/query.html">Query Objects</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/expressions/query_expressions.html">Mongo Query Expression Language</a><ul class="simple">
</ul>
</li>
<li class="toctree-l3"><a class="reference internal" href="api/expressions/update_expressions.html">Update Expressions</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/expressions/update_expressions.html#remove-queries">Remove Queries</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="api/exceptions.html">Exceptions</a><ul class="simple">
</ul>
</li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="examples/index.html">Examples</a></li>
</ul>
</div>
</div>
<div class="section" id="introduction">
<h2>Introduction<a class="headerlink" href="#introduction" title="Permalink to this headline">¶</a></h2>
<p>MongoAlchemy is a layer on top of the <cite>Python</cite> <cite>MongoDB</cite> driver which adds
client-side schema definitions, an easier to work with and programmatic query
language, and a Document-Object mapper which allows python objects to be saved
and loaded into the database in a type-safe way.</p>
<p>An explicit goal of this project is to be able to perform as many operations
as possible without having to perform a load/save cycle since doing so is both
significantly slower and more likely to cause data loss.</p>
<p>There’s more detail in the <a class="reference internal" href="tutorial.html"><em>MongoAlchemy Tutorial</em></a>, but a small example is on
this page below the contents of the documentation.</p>
</div>
<div class="section" id="interesting-features">
<h2>Interesting Features<a class="headerlink" href="#interesting-features" title="Permalink to this headline">¶</a></h2>
<ul>
<li><p class="first"><strong>Object-Document-Mapping</strong>: Turn MongoDB documents into Python objects and vice-versa.</p>
</li>
<li><p class="first"><strong>A rich expression language</strong>: which can be used to do queries for loading documents as well as updating documents without loading them.</p>
</li>
<li><p class="first"><strong>Use Any Collection and Field Names</strong> — Configuration allows collection names and field names to be different from their python names.</p>
</li>
<li><p class="first"><strong>Computed Fields</strong> <a class="reference internal" href="api/schema/fields.html#mongoalchemy.fields.ComputedField" title="mongoalchemy.fields.ComputedField"><tt class="xref py py-class docutils literal"><span class="pre">ComputedField</span></tt></a> fields allow a function to be used to generate the value for a field. Extremely useful for fields where the value is a function (like a last-updated field), or where the field is generated from other fields (like a set of keywords generated or the components of a URL)</p>
</li>
<li><p class="first"><strong>User-defined validation</strong> — for values being wrapped for the database or unwrapped into a python object, as well as validators which happen for both. See <a class="reference internal" href="api/schema/fields.html#mongoalchemy.fields.Field" title="mongoalchemy.fields.Field"><tt class="xref py py-class docutils literal"><span class="pre">Field</span></tt></a> </p>
</li>
<li><p class="first"><strong>Arbitrary Value Fields</strong> — A field that can hold arbitrary values: <a class="reference internal" href="api/schema/fields.html#mongoalchemy.fields.AnythingField" title="mongoalchemy.fields.AnythingField"><tt class="xref py py-class docutils literal"><span class="pre">AnythingField</span></tt></a></p>
</li>
<li><p class="first"><strong>More Flexible Mapping Type</strong> A dict-like field which can have arbitrary key and value types as well as allowing indexing on the keys — not normally possible in Mongo — by storing them in a different format than how they appear when accessed in python a plain dict. <a class="reference internal" href="api/schema/fields.html#mongoalchemy.fields.KVField" title="mongoalchemy.fields.KVField"><tt class="xref py py-class docutils literal"><span class="pre">KVField</span></tt></a></p>
</li>
<li><p class="first"><strong>Automatically Calculated Updates</strong> — The session object has an <a class="reference internal" href="api/session.html#mongoalchemy.session.Session.update" title="mongoalchemy.session.Session.update"><tt class="xref py py-func docutils literal"><span class="pre">mongoalchemy.session.Session.update()</span></tt></a> function which determines which fields are dirty and will execute the appropriate update operations to update the object in the database. The operations used for updating can be overriden at the field definition level as well as in the <tt class="docutils literal"><span class="pre">update</span></tt> call.</p>
</li>
<li><p class="first"><strong>Drop into raw Mongo</strong> — Most functions will accept raw pymongo instead of the mongoalchemy objects. For example:</p>
<div class="highlight-python"><pre>session.query('SomeClass').filter(SomeClass.name == foo).limit(5)``</pre>
</div>
<p>is perfectly valid, as is:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="n">session</span><span class="o">.</span><span class="n">query</span><span class="p">(</span><span class="n">SomeClass</span><span class="p">)</span><span class="o">.</span><span class="n">filter</span><span class="p">({</span><span class="s">'name'</span><span class="p">:</span><span class="s">'foo'</span><span class="p">})</span>
</pre></div>
</div>
</li>
</ul>
</div>
<div class="section" id="installation">
<h2>Installation<a class="headerlink" href="#installation" title="Permalink to this headline">¶</a></h2>
<p><tt class="docutils literal"><span class="pre">easy_install</span> <span class="pre">MongoAlchemy</span></tt></p>
<p>You can also download the source code from the Python Package index or GitHub:</p>
<p>The source code is available at: <a class="reference external" href="http://github.com/jeffjenkins/MongoAlchemy">http://github.com/jeffjenkins/MongoAlchemy</a></p>
<p>The PyPi page is located here: <a class="reference external" href="http://pypi.python.org/pypi/MongoAlchemy/">http://pypi.python.org/pypi/MongoAlchemy/</a></p>
</div>
<div class="section" id="examples">
<h2>Examples<a class="headerlink" href="#examples" title="Permalink to this headline">¶</a></h2>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="kn">from</span> <span class="nn">mongoalchemy.session</span> <span class="kn">import</span> <span class="n">Session</span>
<span class="gp">>>> </span><span class="kn">from</span> <span class="nn">mongoalchemy.document</span> <span class="kn">import</span> <span class="n">Document</span><span class="p">,</span> <span class="n">Index</span><span class="p">,</span> <span class="n">DocumentField</span>
<span class="gp">>>> </span><span class="kn">from</span> <span class="nn">mongoalchemy.fields</span> <span class="kn">import</span> <span class="o">*</span>
<span class="gp">>>> </span><span class="c"># Subclasses of Document both provide the mapping needed for</span>
<span class="gp">... </span><span class="c"># queries as well as the classes for loading/saving objects.</span>
<span class="gp">... </span><span class="k">class</span> <span class="nc">User</span><span class="p">(</span><span class="n">Document</span><span class="p">):</span>
<span class="gp">... </span> <span class="n">config_collection_name</span> <span class="o">=</span> <span class="s">'users'</span>
<span class="gp">...</span>
<span class="gp">... </span> <span class="c"># Setting the possible values by using fields</span>
<span class="gp">... </span> <span class="n">first_name</span> <span class="o">=</span> <span class="n">StringField</span><span class="p">()</span>
<span class="gp">... </span> <span class="n">last_name</span> <span class="o">=</span> <span class="n">StringField</span><span class="p">()</span>
<span class="gp">... </span> <span class="n">age</span> <span class="o">=</span> <span class="n">IntField</span><span class="p">(</span><span class="n">min_value</span><span class="o">=</span><span class="mi">0</span><span class="p">,</span> <span class="n">required</span><span class="o">=</span><span class="bp">False</span><span class="p">)</span>
<span class="gp">...</span>
<span class="gp">... </span> <span class="c"># db_field allows a different DB field name than the one on the</span>
<span class="gp">... </span> <span class="c"># python object</span>
<span class="gp">... </span> <span class="n">email</span> <span class="o">=</span> <span class="n">StringField</span><span class="p">(</span><span class="n">db_field</span><span class="o">=</span><span class="s">'email_address'</span><span class="p">)</span>
<span class="gp">... </span> <span class="n">bio</span> <span class="o">=</span> <span class="n">StringField</span><span class="p">(</span><span class="n">max_length</span><span class="o">=</span><span class="mi">1000</span><span class="p">,</span> <span class="n">required</span><span class="o">=</span><span class="bp">False</span><span class="p">)</span>
<span class="gp">...</span>
<span class="gp">... </span> <span class="c"># A computed field decorator allows values</span>
<span class="gp">... </span> <span class="nd">@computed_field</span><span class="p">(</span><span class="n">SetField</span><span class="p">(</span><span class="n">StringField</span><span class="p">()),</span> <span class="n">deps</span><span class="o">=</span><span class="p">[</span><span class="n">bio</span><span class="p">])</span>
<span class="gp">... </span> <span class="k">def</span> <span class="nf">keywords</span><span class="p">(</span><span class="n">obj</span><span class="p">):</span>
<span class="gp">... </span> <span class="k">return</span> <span class="nb">set</span><span class="p">(</span><span class="n">obj</span><span class="o">.</span><span class="n">get</span><span class="p">(</span><span class="s">'bio'</span><span class="p">,</span><span class="s">''</span><span class="p">)</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="s">' '</span><span class="p">))</span>
<span class="gp">...</span>
<span class="gp">... </span> <span class="n">kw_index</span> <span class="o">=</span> <span class="n">Index</span><span class="p">()</span><span class="o">.</span><span class="n">ascending</span><span class="p">(</span><span class="s">'keywords'</span><span class="p">)</span>
<span class="gp">... </span> <span class="n">name_index</span> <span class="o">=</span> <span class="n">Index</span><span class="p">()</span><span class="o">.</span><span class="n">descending</span><span class="p">(</span><span class="s">'first_name'</span><span class="p">)</span><span class="o">.</span><span class="n">ascending</span><span class="p">(</span><span class="s">'last_name'</span><span class="p">)</span>
<span class="gp">... </span> <span class="n">email_index</span> <span class="o">=</span> <span class="n">Index</span><span class="p">()</span><span class="o">.</span><span class="n">descending</span><span class="p">(</span><span class="s">'email'</span><span class="p">)</span><span class="o">.</span><span class="n">unique</span><span class="p">()</span>
<span class="gp">...</span>
<span class="gp">... </span> <span class="k">def</span> <span class="nf">__eq__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">other</span><span class="p">):</span>
<span class="gp">... </span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">email</span> <span class="o">==</span> <span class="n">other</span><span class="o">.</span><span class="n">email</span>
<span class="gp">...</span>
<span class="gp">... </span> <span class="k">def</span> <span class="nf">__repr__</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="gp">... </span> <span class="k">return</span> <span class="s">'User(email="</span><span class="si">%s</span><span class="s">")'</span> <span class="o">%</span> <span class="bp">self</span><span class="o">.</span><span class="n">email</span>
<span class="gp">...</span>
<span class="gp">>>> </span><span class="n">me</span> <span class="o">=</span> <span class="n">User</span><span class="p">(</span><span class="n">first_name</span><span class="o">=</span><span class="s">'Jeff'</span><span class="p">,</span> <span class="n">last_name</span><span class="o">=</span><span class="s">'Jenkins'</span><span class="p">,</span> <span class="n">email</span><span class="o">=</span><span class="s">'jeff@qcircles.net'</span><span class="p">,</span>
<span class="gp">... </span> <span class="n">bio</span><span class="o">=</span><span class="s">'Jeff is the author of MongoAlchemy'</span><span class="p">)</span>
<span class="go">>>></span>
<span class="gp">>>> </span><span class="n">me</span><span class="o">.</span><span class="n">keywords</span>
<span class="go">set(['author', 'of', 'is', 'Jeff', 'MongoAlchemy', 'the'])</span>
<span class="go">>>></span>
<span class="gp">>>> </span><span class="c"># This connections to the DB and starts the session</span>
<span class="gp">... </span><span class="n">session</span> <span class="o">=</span> <span class="n">Session</span><span class="o">.</span><span class="n">connect</span><span class="p">(</span><span class="s">'mongoalchemy-intro'</span><span class="p">)</span>
<span class="gp">>>> </span><span class="n">session</span><span class="o">.</span><span class="n">clear_collection</span><span class="p">(</span><span class="n">User</span><span class="p">)</span> <span class="c"># clear previous runs of this code!</span>
<span class="go">>>></span>
<span class="gp">>>> </span><span class="c"># Insert on a session will infer the correct collection and push the object</span>
<span class="gp">... </span><span class="c"># into the database</span>
<span class="gp">... </span><span class="n">session</span><span class="o">.</span><span class="n">insert</span><span class="p">(</span><span class="n">me</span><span class="p">)</span>
<span class="gp">>>> </span><span class="nb">set</span><span class="p">([</span><span class="s">'author'</span><span class="p">,</span> <span class="s">'of'</span><span class="p">,</span> <span class="s">'is'</span><span class="p">,</span> <span class="s">'Jeff'</span><span class="p">,</span> <span class="s">'MongoAlchemy'</span><span class="p">,</span> <span class="s">'the'</span><span class="p">])</span>
<span class="go">>>></span>
<span class="gp">>>> </span><span class="c"># Get a user with me's email address and MongoAlchemy in their bio (via keywords)</span>
<span class="gp">... </span><span class="n">db_user</span> <span class="o">=</span> <span class="n">session</span><span class="o">.</span><span class="n">query</span><span class="p">(</span><span class="n">User</span><span class="p">)</span><span class="o">.</span><span class="n">filter</span><span class="p">(</span><span class="n">User</span><span class="o">.</span><span class="n">email</span> <span class="o">==</span> <span class="s">'jeff@qcircles.net'</span><span class="p">)</span><span class="o">.</span><span class="n">in_</span><span class="p">(</span><span class="n">User</span><span class="o">.</span><span class="n">keywords</span><span class="p">,</span> <span class="s">'MongoAlchemy'</span><span class="p">)</span><span class="o">.</span><span class="n">one</span><span class="p">()</span>
<span class="go">>>></span>
<span class="gp">>>> </span><span class="n">db_user</span> <span class="o">==</span> <span class="n">me</span>
<span class="go">True</span>
<span class="go">>>></span>
<span class="gp">>>> </span><span class="c"># Using filter_by for simple equality checking is easier</span>
<span class="gp">... </span><span class="n">session</span><span class="o">.</span><span class="n">query</span><span class="p">(</span><span class="n">User</span><span class="p">)</span><span class="o">.</span><span class="n">filter_by</span><span class="p">(</span><span class="n">email</span><span class="o">=</span><span class="s">'jeff@qcircles.net'</span><span class="p">)</span><span class="o">.</span><span class="n">in_</span><span class="p">(</span><span class="n">User</span><span class="o">.</span><span class="n">keywords</span><span class="p">,</span> <span class="s">'MongoAlchemy'</span><span class="p">)</span><span class="o">.</span><span class="n">one</span><span class="p">()</span>
<span class="go">User(email="jeff@qcircles.net")</span>
<span class="go">>>></span>
<span class="gp">>>> </span><span class="c"># It's also possible to do raw mongo filtering</span>
<span class="gp">... </span><span class="n">session</span><span class="o">.</span><span class="n">query</span><span class="p">(</span><span class="n">User</span><span class="p">)</span><span class="o">.</span><span class="n">filter</span><span class="p">({</span><span class="s">'email'</span><span class="p">:</span><span class="s">'jeff@qcircles.net'</span><span class="p">,</span> <span class="s">'keywords'</span><span class="p">:{</span><span class="s">'$in'</span><span class="p">:[</span><span class="s">'MongoAlchemy'</span><span class="p">]}})</span><span class="o">.</span><span class="n">one</span><span class="p">()</span>
<span class="go">User(email="jeff@qcircles.net")</span>
<span class="go">>>></span>
</pre></div>
</div>
</div>
</div>
<div class="section" id="indices-and-tables">
<h1>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li><a class="reference internal" href="genindex.html"><em>Index</em></a></li>
<li><a class="reference internal" href="py-modindex.html"><em>Module Index</em></a></li>
<li><a class="reference internal" href="search.html"><em>Search Page</em></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h3><a href="#">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">Welcome to MongoAlchemy’s documentation!</a><ul>
<li><a class="reference internal" href="#contents">Contents:</a><ul>
</ul>
</li>
<li><a class="reference internal" href="#introduction">Introduction</a></li>
<li><a class="reference internal" href="#interesting-features">Interesting Features</a></li>
<li><a class="reference internal" href="#installation">Installation</a></li>
<li><a class="reference internal" href="#examples">Examples</a></li>
</ul>
</li>
<li><a class="reference internal" href="#indices-and-tables">Indices and tables</a></li>
</ul>
<h4>Next topic</h4>
<p class="topless"><a href="tutorial.html"
title="next chapter">MongoAlchemy Tutorial</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="_sources/index.txt"
rel="nofollow">Show Source</a></li>
</ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<input type="text" name="q" size="18" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="tutorial.html" title="MongoAlchemy Tutorial"
>next</a> |</li>
<li><a href="#">MongoAlchemy v0.8 documentation</a> »</li>
</ul>
</div>
<div class="footer">
© Copyright 2010, Jeffrey Jenkins.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.0.3.
</div>
</body>
</html> |
src/partials/views/npcs.html | kcaf/VirtualDMScreen | <div class="npcsviewmodel-inc">
<ul class="noselect">
<li><a href="#NPCGenerate" data-bind="click: SetActiveTab.bind($data, 0)">Generate</a></li>
<li><a href="#NPCSearch" data-bind="click: SetActiveTab.bind($data, 1)">Search</a></li>
<li><a href="#NPCGroupsTab" data-bind="click: SetActiveTab.bind($data, 2)">Groups</a></li>
</ul>
<div id="NPCGenerate">
</div>
<div id="NPCSearch">
<div class="npcs filters">
<div class="name">
<label for="name">Name</label>
<input name="name" class="name" data-bind="textInput: $root.Search" />
</div>
<div class="type">
<label for="type">Type</label>
<input name="type" class="type" data-bind="textInput: $root.Type" />
</div>
<div class="cr">
<label for="cr">CR</label>
<select name="cr" class="cr" data-bind="options: CRList, value: CR"></select>
</div>
</div>
<div class="npc grid" data-bind="simpleGrid: SearchGrid, visible: SearchList().length > 0"> </div>
</div>
<div id="NPCGroupsTab">
<div class="filters noselect">
<select class="group-select"
data-bind="options: GroupList,
optionsText: 'Title',
value: SelectedGroup"></select>
<i title="New Group" class="fa fa-plus" data-bind="click: AddGroup"></i>
<i title="Rename Group" class="fa fa-pencil" data-bind="click: WORKSPACE.Helpers.RenameGroup"></i>
<i title="Delete Group" class="trash fa fa-trash" data-bind="click: RemoveGroup.bind($data, SelectedGroup())"></i>
</div>
<div class="grid" data-bind="visible: SelectedGroup().NPCs().length > 0">
<table class="ko-grid npc-view">
<thead>
<tr>
<th class="cr">CR</th>
<th>Name</th>
</tr>
</thead>
<tbody data-bind="foreach: SelectedGroup().NPCsByCR">
<tr>
<td class="cr" data-bind="text: CR"></td>
<td class="npc-name" data-bind="event: { mouseover: ShowRemove, mouseout: HideRemove }">
<span class="npc-link" data-bind="text: $data.Name,
click: WORKSPACE.Helpers.ViewNPC.bind($data, $data.Id())"></span>
<i class="npc-remove fa fa-times" data-bind="visible: IsRemoveVisible, click: $parent.SelectedGroup().RemoveNPC"></i>
</td>
</tr>
</tbody>
</table>
<table class="ko-grid npc-view">
<tbody>
<tr>
<th class="difficulty">Difficulty</th>
<td class="difficulty" data-bind="text: SelectedGroup().Difficulty"></td>
</tr>
</tbody>
</table>
<button class="ui-button extra-margins ui-corner-all ui-widget"
data-bind="click: SendCombat">Send To Combat</button>
</div>
</div>
</div> |
apps/demo/src/modules/@http/tutorial/6-static-options/static-options.component.html | shlomiassaf/tdm | <tdm-markdown-view [markdown]="code | async | tdmCode:[{file: 'README.md', section: 'PART-1'}]:true"></tdm-markdown-view>
<http-resource-wrapper title="Options" [run]="run">
<div class="http-source-code-snip">
<tdm-code-view [code]="(code | async | tdmCode:[{file: 'static-options.component.ts', section: 'code'}])[0]"></tdm-code-view>
</div>
</http-resource-wrapper>
<tdm-markdown-view [markdown]="code | async | tdmCode:[{file: 'README.md', section: 'PART-2'}]:true"></tdm-markdown-view>
|
clean/Linux-x86_64-4.06.1-2.0.5/released/8.12.1/fairisle/8.10.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>fairisle: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.12.1 / fairisle - 8.10.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
fairisle
<small>
8.10.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-26 01:44:44 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-26 01:44:44 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.12.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "http://www.dil.univ-mrs.fr/~jakubiec/fairisle.tar.gz"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Fairisle"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: circuits"
"keyword: automata"
"keyword: co-induction"
"keyword: dependent types"
"category: Computer Science/Architecture"
"date: 2005-12-15"
]
authors: [
"Solange Coupet-Grimal <Solange.Coupet@lif.univ-mrs.fr> [http://www.cmi.univ-mrs.fr/~solange/]"
"Line Jakubiec-Jamet <Line.Jakubiec@lif.univ-mrs.fr> [http://www.dil.univ-mrs.fr/~jakubiec/]"
]
bug-reports: "https://github.com/coq-contribs/fairisle/issues"
dev-repo: "git+https://github.com/coq-contribs/fairisle.git"
synopsis: "Proof of the Fairisle 4x4 Switch Element"
description: """
This library contains the development of general definitions dedicated
to the verification of sequential synchronous devices (based on Moore and Mealy automata)
and the formal verification of the Fairisle 4x4 Switch Element."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/fairisle/archive/v8.10.0.tar.gz"
checksum: "md5=142a12108f624a7e8ee8c9a3b7cc1ae2"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-fairisle.8.10.0 coq.8.12.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.12.1).
The following dependencies couldn't be met:
- coq-fairisle -> coq < 8.11~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-fairisle.8.10.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.04.2-2.0.5/extra-dev/8.11.dev/hammer/1.1.1+8.10.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>hammer: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">8.11.dev / hammer - 1.1.1+8.10</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
hammer
<small>
1.1.1+8.10
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2019-11-29 00:21:18 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2019-11-29 00:21:18 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.11.dev Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
homepage: "https://github.com/lukaszcz/coqhammer"
dev-repo: "git+https://github.com/lukaszcz/coqhammer.git"
bug-reports: "https://github.com/lukaszcz/coqhammer/issues"
license: "LGPL-2.1-only"
synopsis: "General-purpose automated reasoning hammer tool for Coq"
description: """
A general-purpose automated reasoning hammer tool for Coq that combines
learning from previous proofs with the translation of problems to the
logics of automated systems and the reconstruction of successfully found proofs.
"""
build: [make "plugin"]
install: [
[make "install-plugin"]
[make "test-plugin"] {with-test}
]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
"conf-g++" {build}
"coq-hammer-tactics" {= version}
]
tags: [
"category:Miscellaneous/Coq Extensions"
"keyword:automation"
"keyword:hammer"
"logpath:Hammer"
"date:2019-10-14"
]
authors: [
"Lukasz Czajka <lukaszcz@mimuw.edu.pl>"
"Cezary Kaliszyk <cezary.kaliszyk@uibk.ac.at>"
"Burak Ekici <burak.ekici@uibk.ac.at>"
]
url {
src: "https://github.com/lukaszcz/coqhammer/archive/v1.1.1-coq8.10.tar.gz"
checksum: "sha512=c9fd9c1a997775f515850fad54edceac6572d365f1e7cc043e448d6e5c9903ccb1bea2020fbbfda3983616f9ae4181a384b933f97731a487ee5cfba7cc1543d1"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-hammer.1.1.1+8.10 coq.8.11.dev</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.dev).
The following dependencies couldn't be met:
- coq-hammer -> coq < 8.11~ -> ocaml < 4.05.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-hammer.1.1.1+8.10</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.04.2-2.0.5/released/8.5.2/hardware/8.10.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>hardware: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.5.2 / hardware - 8.10.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
hardware
<small>
8.10.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-25 22:42:58 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-25 22:42:58 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.5.2 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/hardware"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Hardware"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: hardware verification"
"keyword: comparator circuit"
"category: Computer Science/Architecture"
"category: Miscellaneous/Extracted Programs/Hardware"
]
authors: [
"Solange Coupet-Grimal & Line Jakubiec"
]
bug-reports: "https://github.com/coq-contribs/hardware/issues"
dev-repo: "git+https://github.com/coq-contribs/hardware.git"
synopsis: "Verification and synthesis of hardware linear arithmetic structures"
description: """
Verification and synthesis of hardware linear arithmetic
structures. Example of a left-to-right comparator.
Three approaches are tackled :
- the usual verification of a circuit, consisting in proving that the
description satisfies the specification,
- the synthesis of a circuit from its specification using the Coq extractor,
- the same approach as above but using the Program tactic."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/hardware/archive/v8.10.0.tar.gz"
checksum: "md5=bc21aceb0c787bf1e321debeef025cf2"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-hardware.8.10.0 coq.8.5.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.5.2).
The following dependencies couldn't be met:
- coq-hardware -> coq >= 8.10 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-hardware.8.10.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
www/index.html | cmcculloh/words | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Fuel UX Basic Template (AMD) No CDN</title>
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="bower_components/fuelux/dist/css/fuelux.min.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/main.min.css">
<script src="bower_components/requirejs/require.js"></script>
<script>
(function () {
require.config({
config: {
moment: {
noGlobal: true
}
},
paths: {
jquery: 'bower_components/jquery-1.11.0/dist/jquery.min',
bootstrap: 'bower_components/bootstrap/dist/js/bootstrap.min',
fuelux: 'bower_components/fuelux/dist/js/fuelux.min',
moment: 'bower_components/moment/min/moment-with-langs.min', // comment out if you dont want momentjs to be default
underscore: 'bower_components/underscore/underscore'
},
shim: { 'bootstrap': { deps: ['jquery'],exports: 'bootstrap' } }
});
require(['fuelux', 'js/main']);
})();
</script>
</head>
<body class="fuelux">
<div class="container">
<h1>Words!</h1>
<div class="container">
<div id="choices">
</div>
<div class="row">
<div id="word" class="col-xs-12"></div>
</div>
<div class="row progress">
<div id="score" class="progress-bar progress-bar-success progress-bar-striped active" role="progressbar" aria-valuenow="1" aria-valuemin="0" aria-valuemax="100" style="width: 1%;">
<span class="sr-only"></span>
</div>
</div>
</div>
<audio id="success" src="http://www.storiesinflight.com/html5/audio/piano_chord.wav" preload="auto"></audio>
<audio id="error" src="http://www.storiesinflight.com/html5/audio/synth_vox.wav" preload="auto"></audio>
</div>
</body>
</html> |
src/Viteloge/CoreBundle/Resources/descriptions/72158.html | donaldinou/frontend | <div class="commune_descr limited">
<p>
Lavaré est
un village
localisé dans le département de Sarthe en Pays de la Loire. Elle totalisait 817 habitants en 2008.</p>
<p>La commune compte de multiples équipements sportifs, elle propose entre autres un terrain de tennis, deux terrains de sport, un équipement de roller/skate et une boucle de randonnée.</p>
<p>À proximité de Lavaré sont localisées les villes de
<a href="{{VLROOT}}/immobilier/coudrecieux_72094/">Coudrecieux</a> située à 6 km, 609 habitants,
<a href="{{VLROOT}}/immobilier/vouvray-sur-huisne_72383/">Vouvray-sur-Huisne</a> localisée à 7 km, 133 habitants,
<a href="{{VLROOT}}/immobilier/saint-maixent_72296/">Saint-Maixent</a> à 4 km, 743 habitants,
<a href="{{VLROOT}}/immobilier/semur-en-vallon_72333/">Semur-en-Vallon</a> située à 3 km, 473 habitants,
<a href="{{VLROOT}}/immobilier/vibraye_72373/">Vibraye</a> à 6 km, 2 625 habitants,
<a href="{{VLROOT}}/immobilier/dollon_72118/">Dollon</a> localisée à 4 km, 1 365 habitants,
entre autres. De plus, Lavaré est située à seulement quatorze km de <a href="{{VLROOT}}/immobilier/ferte-bernard_72132/">La Ferté-Bernard</a>.</p>
<p>Le nombre d'habitations, à Lavaré, se décomposait en 2011 en quatorze appartements et 454 maisons soit
un marché plutôt équilibré.</p>
<p>À Lavaré, le prix moyen à l'achat d'un appartement se situe à 909 € du m² en vente. Le prix moyen d'une maison à l'achat se situe à 1 527 € du m². À la location le prix moyen se situe à 7,5 € du m² par mois.</p>
<p>Si vous pensez demenager à Lavaré, vous pourrez aisément trouver une maison à acheter. </p>
</div>
|
docs/enums/forumpostpopularity.html | alexanderwe/the-traveler | <!doctype html>
<html class="default no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>ForumPostPopularity | The Traveler</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../assets/css/main.css">
</head>
<body>
<header>
<div class="tsd-page-toolbar">
<div class="container">
<div class="table-wrap">
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
<div class="field">
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
<input id="tsd-search-field" type="text" />
</div>
<ul class="results">
<li class="state loading">Preparing search index...</li>
<li class="state failure">The search index is not available</li>
</ul>
<a href="../index.html" class="title">The Traveler</a>
</div>
<div class="table-cell" id="tsd-widgets">
<div id="tsd-filter">
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
<div class="tsd-filter-group">
<div class="tsd-select" id="tsd-filter-visibility">
<span class="tsd-select-label">All</span>
<ul class="tsd-select-list">
<li data-value="public">Public</li>
<li data-value="protected">Public/Protected</li>
<li data-value="private" class="selected">All</li>
</ul>
</div>
<input type="checkbox" id="tsd-filter-inherited" checked />
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
<input type="checkbox" id="tsd-filter-externals" checked />
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
<input type="checkbox" id="tsd-filter-only-exported" />
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
</div>
</div>
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
</div>
</div>
</div>
</div>
<div class="tsd-page-title">
<div class="container">
<ul class="tsd-breadcrumb">
<li>
<a href="../globals.html">Globals</a>
</li>
<li>
<a href="forumpostpopularity.html">ForumPostPopularity</a>
</li>
</ul>
<h1>Enumeration ForumPostPopularity</h1>
</div>
</div>
</header>
<div class="container container-main">
<div class="row">
<div class="col-8 col-content">
<section class="tsd-panel-group tsd-index-group">
<h2>Index</h2>
<section class="tsd-panel tsd-index-panel">
<div class="tsd-index-content">
<section class="tsd-index-section tsd-is-external">
<h3>Enumeration members</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="forumpostpopularity.html#coolstory" class="tsd-kind-icon">Cool<wbr>Story</a></li>
<li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="forumpostpopularity.html#default" class="tsd-kind-icon">Default</a></li>
<li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="forumpostpopularity.html#discussed" class="tsd-kind-icon">Discussed</a></li>
<li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="forumpostpopularity.html#empty" class="tsd-kind-icon">Empty</a></li>
<li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="forumpostpopularity.html#heatingup" class="tsd-kind-icon">Heating<wbr>Up</a></li>
<li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="forumpostpopularity.html#hot" class="tsd-kind-icon">Hot</a></li>
</ul>
</section>
</div>
</section>
</section>
<section class="tsd-panel-group tsd-member-group tsd-is-external">
<h2>Enumeration members</h2>
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external">
<a name="coolstory" class="tsd-anchor"></a>
<h3>Cool<wbr>Story</h3>
<div class="tsd-signature tsd-kind-icon">Cool<wbr>Story<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = 3</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/forum/interfaces.ts#L123">type-definitions/forum/interfaces.ts:123</a></li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external">
<a name="default" class="tsd-anchor"></a>
<h3>Default</h3>
<div class="tsd-signature tsd-kind-icon">Default<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = 1</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/forum/interfaces.ts#L121">type-definitions/forum/interfaces.ts:121</a></li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external">
<a name="discussed" class="tsd-anchor"></a>
<h3>Discussed</h3>
<div class="tsd-signature tsd-kind-icon">Discussed<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = 2</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/forum/interfaces.ts#L122">type-definitions/forum/interfaces.ts:122</a></li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external">
<a name="empty" class="tsd-anchor"></a>
<h3>Empty</h3>
<div class="tsd-signature tsd-kind-icon">Empty<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = 0</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/forum/interfaces.ts#L120">type-definitions/forum/interfaces.ts:120</a></li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external">
<a name="heatingup" class="tsd-anchor"></a>
<h3>Heating<wbr>Up</h3>
<div class="tsd-signature tsd-kind-icon">Heating<wbr>Up<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = 4</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/forum/interfaces.ts#L124">type-definitions/forum/interfaces.ts:124</a></li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external">
<a name="hot" class="tsd-anchor"></a>
<h3>Hot</h3>
<div class="tsd-signature tsd-kind-icon">Hot<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = 5</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/forum/interfaces.ts#L125">type-definitions/forum/interfaces.ts:125</a></li>
</ul>
</aside>
</section>
</section>
</div>
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
<nav class="tsd-navigation primary">
<ul>
<li class="globals ">
<a href="../globals.html"><em>Globals</em></a>
</li>
</ul>
</nav>
<nav class="tsd-navigation secondary menu-sticky">
<ul class="before-current">
</ul>
<ul class="current">
<li class="current tsd-kind-enum tsd-is-external">
<a href="forumpostpopularity.html" class="tsd-kind-icon">Forum<wbr>Post<wbr>Popularity</a>
<ul>
<li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external">
<a href="forumpostpopularity.html#coolstory" class="tsd-kind-icon">Cool<wbr>Story</a>
</li>
<li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external">
<a href="forumpostpopularity.html#default" class="tsd-kind-icon">Default</a>
</li>
<li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external">
<a href="forumpostpopularity.html#discussed" class="tsd-kind-icon">Discussed</a>
</li>
<li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external">
<a href="forumpostpopularity.html#empty" class="tsd-kind-icon">Empty</a>
</li>
<li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external">
<a href="forumpostpopularity.html#heatingup" class="tsd-kind-icon">Heating<wbr>Up</a>
</li>
<li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external">
<a href="forumpostpopularity.html#hot" class="tsd-kind-icon">Hot</a>
</li>
</ul>
</li>
</ul>
<ul class="after-current">
</ul>
</nav>
</div>
</div>
</div>
<footer>
<div class="container">
<h2>Legend</h2>
<div class="tsd-legend-group">
<ul class="tsd-legend">
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
</ul>
</div>
</div>
</footer>
<div class="overlay"></div>
<script src="../assets/js/main.js"></script>
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
</body>
</html> |
cuckoo/web/templates/analysis/export.html | mburakergenc/Malware-Detection-using-Machine-Learning | {% extends "base.html" %}
{% load staticfiles %}
{% block content %}
<style>
.btn-file {
position: relative;
overflow: hidden;
}
.btn-file input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 999px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
background: red;
cursor: inherit;
display: block;
}
input[readonly] {
background-color: white !important;
cursor: text !important;
}
</style>
<div class="row">
<div class="col-md-6 col-md-offset-3 center">
<p style="margin-bottom: 10px;"><img src="{% static "graphic/cuckoo.png" %}" /></p>
<form role="form" action="" method="post" enctype="multipart/form-data">{% csrf_token %}
<div class="tabbable">
<div class="tab-content">
<div class="tab-pane fade in active" id="file">
<label style="display: flex; color: #337ab7;">Chosen analysis nr.{{analysis.info.id}} to export </label>
<div class="input-group col-md-6">
{% if analysis.info.category == "file" %}
<input type="text" class="form-control" value="{{analysis.target.file.name}}" disabled>
{% elif analysis.info.category == "url" %}
<input type="text" class="form-control" value="{{analysis.target.url}}" disabled>
<!-- This else is made only for testing purposes. Will be deleted when testing is done. -->
{% else %}
<input type="text" class="form-control" value="Unknown" disabled>
{% endif %}
</div>
</div>
</div>
</div>
<div class="panel" id="accordion" style="margin-top: 20px;">
<div class="panel panel-default">
<div class="panel-heading">
<label class=accordion-toggle" style="color: #337ab7;">Select which files you want to include in the export</label>
</div>
<div id="options" class="panel-collapse collapse in" style="text-align: left;">
<div class="panel-body">
{% for dirname, count in dirs %}
<div class="form-group">
<input type="checkbox" name="dirs" value="{{ dirname }}" checked="checked"> {{ dirname }} ({{ count }} files)
</div>
{% endfor %}
{% for filename in files %}
<div class="form-group">
<input type="checkbox" name="files" value="{{ filename }}" checked="checked"> {{ filename }}
</div>
{% endfor %}
</div>
</div>
</div>
</div>
<div style="margin-top: 20px;">
<button type="submit" class="btn btn-primary btn-lg">Export</button>
</div>
</form>
</div>
</div>
{% endblock %}
|
src/JasperStarter/docs/index.html | Dericktan/phpjasper | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
| Generated by Apache Maven Doxia at 2016-10-07
| Rendered using Apache Maven Fluido Skin 1.2.1
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JasperStarter - JasperStarter - Running JasperReports from command line</title>
<link rel="stylesheet" href="./css/apache-maven-fluido.min.css" />
<link rel="stylesheet" href="./css/site.css" />
<link rel="stylesheet" href="./css/print.css" media="print" />
<script type="text/javascript" src="./js/apache-maven-fluido.min.js"></script>
<meta name="Date-Revision-yyyymmdd" content="20161007" />
<meta http-equiv="Content-Language" content="en" />
</head>
<body class="topBarDisabled">
<div class="container-fluid">
<div id="banner">
<div class="pull-left">
<div id="bannerLeft">
<h2>JasperStarter - Running JasperReports from command line</h2>
</div>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="projectVersion">Version: 3.1.0-SNAPSHOT</li>
<li class="pull-right"> <a href="cs/index.html" title="[cs]">[cs]</a>
</li>
<li class="divider pull-right">|</li>
<li class="pull-right"> <a href="de/index.html" title="[de]">[de]</a>
</li>
</ul>
</div>
<div class="row-fluid">
<div id="leftColumn" class="span3">
<div class="well sidebar-nav">
<h3>Overview</h3>
<ul>
<li class="none">
<strong>Introduction</strong>
</li>
<li class="none">
<a href="usage.html" title="Usage">Usage</a>
</li>
<li class="none">
<a href="screenshots.html" title="Screenshots">Screenshots</a>
</li>
<li class="none">
<a href="files.html" title="Files">Files</a>
</li>
<li class="none">
<a href="changes.html" title="Changes">Changes</a>
</li>
<li class="none">
<a href="http://sourceforge.net/projects/jasperstarter/files/" class="externalLink" title="Downloads">Downloads</a>
</li>
<li class="none">
<a href="source-repository.html" title="Sourcecode">Sourcecode</a>
</li>
<li class="none">
<a href="http://sourceforge.net/projects/jasperstarter/" class="externalLink" title="Project Site">Project Site</a>
</li>
<li class="none">
<a href="http://www.openhub.net/p/jasperstarter" class="externalLink" title="OpenHub">OpenHub</a>
</li>
</ul>
<h3>Howto</h3>
<ul>
<li class="none">
<a href="unicode-pdf-export.html" title="Unicode pdf export">Unicode pdf export</a>
</li>
</ul>
<h3>Project Documentation</h3>
<ul>
<li class="collapsed">
<a href="project-info.html" title="Project Information">Project Information</a>
</li>
</ul>
<div id="lastPublished">
<span id="publishDate">Last Published: 2016-10-07</span>
</div>
<hr class="divider" />
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<div id="twitter">
<a href="https://twitter.com/vosskaem" class="twitter-follow-button" data-show-count="false" data-align="left" data-size="medium" data-show-screen-name="false" data-lang="en">Follow vosskaem</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
<div class="clear"></div>
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="span9" >
<div class="section">
<h2>JasperStarter - Running JasperReports from command line<a name="JasperStarter_-_Running_JasperReports_from_command_line"></a></h2>
<p>JasperStarter is an opensource command line launcher and batch compiler for <a class="externalLink" href="http://community.jaspersoft.com/project/jasperreports-library">JasperReports</a>.</p>
<p>The official homepage is <a class="externalLink" href="http://jasperstarter.cenote.de/">jasperstater.cenote.de</a>.</p>
<p>It has the following features:</p>
<ul>
<li>Run any JasperReport that needs a jdbc, csv, xml, json or empty datasource</li>
<li>Use with any database for which a jdbc driver is available</li>
<li>Run reports with subreports</li>
<li>Execute reports that need runtime parameters. Any parameter whose class has a string constructor is accepted. Additionally the following types are supported or have special handlers:
<ul>
<li>date, image (see usage), locale</li>
</ul></li>
<li>Optionally prompt for report parameters</li>
<li>Print directly to system default or given printer</li>
<li>Optionally show printer dialog to choose printer</li>
<li>Optionally show printpreview</li>
<li>Export to file in the following formats:
<ul>
<li>pdf, rtf, xls, xlsMeta, xlsx, docx, odt, ods, pptx, csv, csvMeta, html, xhtml, xml, jrprint</li>
</ul></li>
<li>Export multiple formats in one commanding call</li>
<li>Compile, print and export in one commanding call</li>
<li>View, print or export previously filled reports (use jrprint file as input)</li>
<li>Can compile a whole directory of .jrxml files.</li>
<li>Integrate in non Java applications (for example PHP, Python)</li>
<li>Binary executable on Windows</li>
<li>Includes JasperReports so this is the only tool you need to install</li>
</ul>
<p>Requirements:</p>
<ul>
<li>Java 1.6 or higher</li>
<li>A JDBC 2.1 driver for your database</li>
</ul>
<div class="section">
<h3>Quickstart<a name="Quickstart"></a></h3>
<ul>
<li>Download JasperStarter from <a class="externalLink" href="http://sourceforge.net/projects/jasperstarter/">Sourceforge</a>.</li>
<li>Extract the distribution archive to any directory on your system.</li>
<li>Add the <i>./bin</i> directory of your installation to your searchpath (on Windows: invoke setup.exe).</li>
<li>Put your jdbc drivers in the <i>./jdbc</i> directory of your installation or use <i>--jdbc-dir</i> to point to a different directory.</li>
</ul>
<p>Invoke JasperStarter with <i>-h</i> to get an overview:</p>
<div class="source">
<pre>$ jasperstarter -h
</pre></div>
<p>Invoke JasperStarter with <i>process -h</i> to get help on the process command:</p>
<div class="source">
<pre>$ jasperstarter process -h
</pre></div>
<p>Example with reportparameters:</p>
<div class="source">
<pre>$ jasperstarter pr report.jasper -t mysql -u myuser -f pdf -H myhost \
-n mydb -o report -p secret -P CustomerNo=10 StartFrom=2012-10-01
</pre></div>
<p>Example with hsql using database type generic:</p>
<div class="source">
<pre>$ jasperstarter pr report.jasper -t generic -f pdf -o report -u sa \
--db-driver org.hsqldb.jdbcDriver \
--db-url jdbc:hsqldb:hsql://localhost
</pre></div>
<p>For more information take a look in the docs directory of the distibution archive or read the <a class="externalLink" href="http://jasperstarter.sourceforge.net/usage.html">Usage</a> page online.</p></div>
<div class="section">
<h3>Release Notes<a name="Release_Notes"></a></h3>
<p>See <a href="changes.html">Changes</a> for a history of changes.</p>
<div class="section">
<h4>Known Bugs<a name="Known_Bugs"></a></h4>
<p>For upcoming issues see <a class="externalLink" href="https://cenote-issues.atlassian.net/browse/JAS">Issues</a></p></div></div>
<div class="section">
<h3>Feedback<a name="Feedback"></a></h3>
<p>Feedback is always welcome! If you have any questions or proposals, don’t hesitate to write to our <a class="externalLink" href="http://sourceforge.net/p/jasperstarter/discussion/">discussion</a> forum. If you found a bug or you are missing a feature, log into our <a class="externalLink" href="https://cenote-issues.atlassian.net/browse/JAS">Issuetracker</a> and create a bug or feature request.</p>
<p>If you like the software you can write a <a class="externalLink" href="http://sourceforge.net/projects/jasperstarter/reviews">review</a> :-)</p></div>
<div class="section">
<h3>Developement<a name="Developement"></a></h3>
<p>The sourcecode is available at <a class="externalLink" href="http://bitbucket.org/cenote/jasperstarter">bitbucket.org/cenote/jasperstarter</a>, the project website is hosted at <a class="externalLink" href="http://sourceforge.net/projects/jasperstarter/">Sourceforge</a>.</p>
<p>JasperStarter is build with <a class="externalLink" href="http://maven.apache.org/">Maven</a>. </p>
<p>Unfortunately one dependency (jasperreports-functions) is not provided in a public maven repository so you must add it to your local maven repo:</p>
<div class="source">
<pre># Download jasperreports-functions-6.1.0.jar from
# https://sourceforge.net/projects/jasperreports/files/jasperreports/
$ jar xvf jasperreports-functions-6.1.0.jar META-INF/maven/net.sf.jasperreports/jasperreports-functions/pom.xml
$ mvn install:install-file -Dfile=jasperreports-functions-6.1.0.jar -DpomFile=META-INF/maven/net.sf.jasperreports/jasperreports-functions/pom.xml
</pre></div>
<p>See <a class="externalLink" href="https://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html">https://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html</a></p>
<p>It is possible to compile JasperStarter without this dependency but users will run into errors if they use specific functions in their reports. So there is a test that fails if jasperreports-functions is not available.</p>
<p>On Linux 64 bit the launch4j-maven-plugin may fail. You need the folloing libs in a 32 bit version:</p>
<ul>
<li>z1</li>
<li>ncurses5</li>
<li>bz2-1.0</li>
</ul>
<p>On Ubuntu 14.04 for example use this command:</p>
<div class="source">
<pre>$ sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0
</pre></div>
<p>To get a distribution package run:</p>
<div class="source">
<pre>$ mvn package -P release
</pre></div>
<p>or if you build from the current default branch you better use:</p>
<div class="source">
<pre>$ mvn package -P release,snapshot
</pre></div>
<p><b>Attention! You cannot execute</b> <tt>target/jasperstarter.jar</tt> <b>without having it's dependencies in</b> <tt>../lib</tt> ! See <b>dev</b> profile below!</p>
<p>If you want to build the Windows setup.exe, you need to have <i>nsis</i> in your search path (works on linux too, you can find a compiled release in the sourceforge download folder <i>build-tools</i> for your convenience) an add the <b>windows-setup</b> profile to your build:</p>
<div class="source">
<pre>$ mvn package -P release,windows-setup
</pre></div>
<p>or</p>
<div class="source">
<pre>$ mvn package -P release,windows-setup,snapshot
</pre></div>
<p>While developing you may want to have a quicker build. The <b>dev</b> profile excludes some long running reports and the compressed archives. Instead it puts the build result into <i>target/jasperstarter-dev-bin</i>.</p>
<div class="source">
<pre>$ mvn package -P dev
</pre></div>
<p>Now you can execute JasperStarter without IDE:</p>
<div class="source">
<pre>$ target/jasperstarter-dev-bin/bin/jasperstarter
</pre></div>
<p>or</p>
<div class="source">
<pre>$ java -jar target/jasperstarter-dev-bin/lib/jasperstarter.jar
</pre></div>
<p>During development you might want not to be annoyed by tests. So the following options are useful:</p>
<div class="source">
<pre>$ mvn package -P dev -D skipTests
</pre></div>
<p>or</p>
<div class="source">
<pre>$ mvn package -P dev -D maven.test.failure.ignore=true
</pre></div>
<p>To run JasperStarter from within your IDE add <i>--jdbc-dir jdbc</i> to the argument list of your run configuration. Otherwise you will get an error:</p>
<div class="source">
<pre>Error, (...)/JasperStarter/target/classes/jdbc is not a directory!
</pre></div>
<p>Put your jdbc drivers in the <i>./jdbc</i> directory of the project to invoke JasperStarter from within your IDE to call up a database based report.</p></div>
<div class="section">
<h3>License<a name="License"></a></h3>
<p>Copyright 2012-2015 Cenote GmbH.</p>
<p>Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at</p>
<p><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a></p>
<p>Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.</p></div></div>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row span16">Copyright © 2012-2016
<a href="http://www.cenote.de">Cenote GmbH</a>.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>
|
docs/picturepark-sdk-v1-angular/api/classes/serviceproviderdeleteexception.html | Picturepark/Picturepark.SDK.TypeScript | <!doctype html>
<html class="default no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>ServiceProviderDeleteException | @picturepark/sdk-v1-angular API</title>
<meta name="description" content="Documentation for @picturepark/sdk-v1-angular API">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../assets/css/main.css">
</head>
<body>
<header>
<div class="tsd-page-toolbar">
<div class="container">
<div class="table-wrap">
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.json" data-base="..">
<div class="field">
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
<input id="tsd-search-field" type="text" />
</div>
<ul class="results">
<li class="state loading">Preparing search index...</li>
<li class="state failure">The search index is not available</li>
</ul>
<a href="../index.html" class="title">@picturepark/sdk-v1-angular API</a>
</div>
<div class="table-cell" id="tsd-widgets">
<div id="tsd-filter">
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
<div class="tsd-filter-group">
<div class="tsd-select" id="tsd-filter-visibility">
<span class="tsd-select-label">All</span>
<ul class="tsd-select-list">
<li data-value="public">Public</li>
<li data-value="protected">Public/Protected</li>
<li data-value="private" class="selected">All</li>
</ul>
</div>
<input type="checkbox" id="tsd-filter-inherited" checked />
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
<input type="checkbox" id="tsd-filter-externals" checked />
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
<input type="checkbox" id="tsd-filter-only-exported" />
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
</div>
</div>
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
</div>
</div>
</div>
</div>
<div class="tsd-page-title">
<div class="container">
<ul class="tsd-breadcrumb">
<li>
<a href="../globals.html">Globals</a>
</li>
<li>
<a href="serviceproviderdeleteexception.html">ServiceProviderDeleteException</a>
</li>
</ul>
<h1>Class ServiceProviderDeleteException</h1>
</div>
</div>
</header>
<div class="container container-main">
<div class="row">
<div class="col-8 col-content">
<section class="tsd-panel tsd-hierarchy">
<h3>Hierarchy</h3>
<ul class="tsd-hierarchy">
<li>
<a href="pictureparkexception.html" class="tsd-signature-type">PictureparkException</a>
<ul class="tsd-hierarchy">
<li>
<span class="target">ServiceProviderDeleteException</span>
</li>
</ul>
</li>
</ul>
</section>
<section class="tsd-panel">
<h3>Implements</h3>
<ul class="tsd-hierarchy">
<li><a href="../interfaces/iexception.html" class="tsd-signature-type">IException</a></li>
<li><a href="../interfaces/ipictureparkexception.html" class="tsd-signature-type">IPictureparkException</a></li>
<li><a href="../interfaces/iserviceproviderdeleteexception.html" class="tsd-signature-type">IServiceProviderDeleteException</a></li>
</ul>
</section>
<section class="tsd-panel-group tsd-index-group">
<h2>Index</h2>
<section class="tsd-panel tsd-index-panel">
<div class="tsd-index-content">
<section class="tsd-index-section tsd-is-external">
<h3>Constructors</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external"><a href="serviceproviderdeleteexception.html#constructor" class="tsd-kind-icon">constructor</a></li>
</ul>
</section>
<section class="tsd-index-section tsd-is-external">
<h3>Properties</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected tsd-is-external"><a href="serviceproviderdeleteexception.html#_discriminator" class="tsd-kind-icon">_discriminator</a></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="serviceproviderdeleteexception.html#detailederrormessage" class="tsd-kind-icon">detailed<wbr>Error<wbr>Message</a></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="serviceproviderdeleteexception.html#exceptionmessage" class="tsd-kind-icon">exception<wbr>Message</a></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="serviceproviderdeleteexception.html#httpstatuscode" class="tsd-kind-icon">http<wbr>Status<wbr>Code</a></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="serviceproviderdeleteexception.html#serviceproviderid" class="tsd-kind-icon">service<wbr>Provider<wbr>Id</a></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="serviceproviderdeleteexception.html#traceid" class="tsd-kind-icon">trace<wbr>Id</a></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="serviceproviderdeleteexception.html#tracejobid" class="tsd-kind-icon">trace<wbr>Job<wbr>Id</a></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="serviceproviderdeleteexception.html#tracelevel" class="tsd-kind-icon">trace<wbr>Level</a></li>
</ul>
</section>
<section class="tsd-index-section tsd-is-external">
<h3>Methods</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-external"><a href="serviceproviderdeleteexception.html#init" class="tsd-kind-icon">init</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-external"><a href="serviceproviderdeleteexception.html#tojson" class="tsd-kind-icon">toJSON</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static tsd-is-external"><a href="serviceproviderdeleteexception.html#fromjs" class="tsd-kind-icon">fromJS</a></li>
</ul>
</section>
</div>
</section>
</section>
<section class="tsd-panel-group tsd-member-group tsd-is-external">
<h2>Constructors</h2>
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
<a name="constructor" class="tsd-anchor"></a>
<h3>constructor</h3>
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
<li class="tsd-signature tsd-kind-icon">new <wbr>Service<wbr>Provider<wbr>Delete<wbr>Exception<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">?: </span><a href="../interfaces/iserviceproviderdeleteexception.html" class="tsd-signature-type">IServiceProviderDeleteException</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="serviceproviderdeleteexception.html" class="tsd-signature-type">ServiceProviderDeleteException</a></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Overrides <a href="pictureparkexception.html">PictureparkException</a>.<a href="pictureparkexception.html#constructor">constructor</a></p>
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L33791">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:33791</a></li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5><span class="tsd-flag ts-flagOptional">Optional</span> data: <a href="../interfaces/iserviceproviderdeleteexception.html" class="tsd-signature-type">IServiceProviderDeleteException</a></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <a href="serviceproviderdeleteexception.html" class="tsd-signature-type">ServiceProviderDeleteException</a></h4>
</li>
</ul>
</section>
</section>
<section class="tsd-panel-group tsd-member-group tsd-is-external">
<h2>Properties</h2>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected tsd-is-external">
<a name="_discriminator" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagProtected">Protected</span> _discriminator</h3>
<div class="tsd-signature tsd-kind-icon">_discriminator<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
<aside class="tsd-sources">
<p>Inherited from <a href="pictureparkexception.html">PictureparkException</a>.<a href="pictureparkexception.html#_discriminator">_discriminator</a></p>
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L27359">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:27359</a></li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
<a name="detailederrormessage" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagOptional">Optional</span> detailed<wbr>Error<wbr>Message</h3>
<div class="tsd-signature tsd-kind-icon">detailed<wbr>Error<wbr>Message<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></div>
<aside class="tsd-sources">
<p>Implementation of <a href="../interfaces/iserviceproviderdeleteexception.html">IServiceProviderDeleteException</a>.<a href="../interfaces/iserviceproviderdeleteexception.html#detailederrormessage">detailedErrorMessage</a></p>
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L33791">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:33791</a></li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
<a name="exceptionmessage" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagOptional">Optional</span> exception<wbr>Message</h3>
<div class="tsd-signature tsd-kind-icon">exception<wbr>Message<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></div>
<aside class="tsd-sources">
<p>Implementation of <a href="../interfaces/iserviceproviderdeleteexception.html">IServiceProviderDeleteException</a>.<a href="../interfaces/iserviceproviderdeleteexception.html#exceptionmessage">exceptionMessage</a></p>
<p>Inherited from <a href="pictureparkexception.html">PictureparkException</a>.<a href="pictureparkexception.html#exceptionmessage">exceptionMessage</a></p>
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L27357">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:27357</a></li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
<a name="httpstatuscode" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagOptional">Optional</span> http<wbr>Status<wbr>Code</h3>
<div class="tsd-signature tsd-kind-icon">http<wbr>Status<wbr>Code<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span></div>
<aside class="tsd-sources">
<p>Implementation of <a href="../interfaces/iserviceproviderdeleteexception.html">IServiceProviderDeleteException</a>.<a href="../interfaces/iserviceproviderdeleteexception.html#httpstatuscode">httpStatusCode</a></p>
<p>Inherited from <a href="pictureparkexception.html">PictureparkException</a>.<a href="pictureparkexception.html#httpstatuscode">httpStatusCode</a></p>
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L27356">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:27356</a></li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
<a name="serviceproviderid" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagOptional">Optional</span> service<wbr>Provider<wbr>Id</h3>
<div class="tsd-signature tsd-kind-icon">service<wbr>Provider<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></div>
<aside class="tsd-sources">
<p>Implementation of <a href="../interfaces/iserviceproviderdeleteexception.html">IServiceProviderDeleteException</a>.<a href="../interfaces/iserviceproviderdeleteexception.html#serviceproviderid">serviceProviderId</a></p>
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L33790">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:33790</a></li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
<a name="traceid" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagOptional">Optional</span> trace<wbr>Id</h3>
<div class="tsd-signature tsd-kind-icon">trace<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></div>
<aside class="tsd-sources">
<p>Implementation of <a href="../interfaces/iserviceproviderdeleteexception.html">IServiceProviderDeleteException</a>.<a href="../interfaces/iserviceproviderdeleteexception.html#traceid">traceId</a></p>
<p>Inherited from <a href="pictureparkexception.html">PictureparkException</a>.<a href="pictureparkexception.html#traceid">traceId</a></p>
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L27354">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:27354</a></li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
<a name="tracejobid" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagOptional">Optional</span> trace<wbr>Job<wbr>Id</h3>
<div class="tsd-signature tsd-kind-icon">trace<wbr>Job<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></div>
<aside class="tsd-sources">
<p>Implementation of <a href="../interfaces/iserviceproviderdeleteexception.html">IServiceProviderDeleteException</a>.<a href="../interfaces/iserviceproviderdeleteexception.html#tracejobid">traceJobId</a></p>
<p>Inherited from <a href="pictureparkexception.html">PictureparkException</a>.<a href="pictureparkexception.html#tracejobid">traceJobId</a></p>
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L27355">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:27355</a></li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
<a name="tracelevel" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagOptional">Optional</span> trace<wbr>Level</h3>
<div class="tsd-signature tsd-kind-icon">trace<wbr>Level<span class="tsd-signature-symbol">:</span> <a href="../enums/tracelevel.html" class="tsd-signature-type">TraceLevel</a></div>
<aside class="tsd-sources">
<p>Implementation of <a href="../interfaces/iserviceproviderdeleteexception.html">IServiceProviderDeleteException</a>.<a href="../interfaces/iserviceproviderdeleteexception.html#tracelevel">traceLevel</a></p>
<p>Inherited from <a href="pictureparkexception.html">PictureparkException</a>.<a href="pictureparkexception.html#tracelevel">traceLevel</a></p>
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L27353">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:27353</a></li>
</ul>
</aside>
</section>
</section>
<section class="tsd-panel-group tsd-member-group tsd-is-external">
<h2>Methods</h2>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
<a name="init" class="tsd-anchor"></a>
<h3>init</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
<li class="tsd-signature tsd-kind-icon">init<span class="tsd-signature-symbol">(</span>_data<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Overrides <a href="pictureparkexception.html">PictureparkException</a>.<a href="pictureparkexception.html#init">init</a></p>
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L33798">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:33798</a></li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5><span class="tsd-flag ts-flagOptional">Optional</span> _data: <span class="tsd-signature-type">any</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
<a name="tojson" class="tsd-anchor"></a>
<h3>toJSON</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
<li class="tsd-signature tsd-kind-icon">toJSON<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Overrides <a href="pictureparkexception.html">PictureparkException</a>.<a href="pictureparkexception.html#tojson">toJSON</a></p>
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L33813">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:33813</a></li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5><span class="tsd-flag ts-flagOptional">Optional</span> data: <span class="tsd-signature-type">any</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static tsd-is-external">
<a name="fromjs" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagStatic">Static</span> fromJS</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static tsd-is-external">
<li class="tsd-signature tsd-kind-icon">fromJS<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="serviceproviderdeleteexception.html" class="tsd-signature-type">ServiceProviderDeleteException</a></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Overrides <a href="pictureparkexception.html">PictureparkException</a>.<a href="pictureparkexception.html#fromjs">fromJS</a></p>
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L33806">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:33806</a></li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>data: <span class="tsd-signature-type">any</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <a href="serviceproviderdeleteexception.html" class="tsd-signature-type">ServiceProviderDeleteException</a></h4>
</li>
</ul>
</section>
</section>
</div>
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
<nav class="tsd-navigation primary">
<ul>
<li class="globals ">
<a href="../globals.html"><em>Globals</em></a>
</li>
</ul>
</nav>
<nav class="tsd-navigation secondary menu-sticky">
<ul class="before-current">
</ul>
<ul class="current">
<li class="current tsd-kind-class tsd-is-external">
<a href="serviceproviderdeleteexception.html" class="tsd-kind-icon">Service<wbr>Provider<wbr>Delete<wbr>Exception</a>
<ul>
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
<a href="serviceproviderdeleteexception.html#constructor" class="tsd-kind-icon">constructor</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected tsd-is-external">
<a href="serviceproviderdeleteexception.html#_discriminator" class="tsd-kind-icon">_discriminator</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
<a href="serviceproviderdeleteexception.html#detailederrormessage" class="tsd-kind-icon">detailed<wbr>Error<wbr>Message</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
<a href="serviceproviderdeleteexception.html#exceptionmessage" class="tsd-kind-icon">exception<wbr>Message</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
<a href="serviceproviderdeleteexception.html#httpstatuscode" class="tsd-kind-icon">http<wbr>Status<wbr>Code</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
<a href="serviceproviderdeleteexception.html#serviceproviderid" class="tsd-kind-icon">service<wbr>Provider<wbr>Id</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
<a href="serviceproviderdeleteexception.html#traceid" class="tsd-kind-icon">trace<wbr>Id</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
<a href="serviceproviderdeleteexception.html#tracejobid" class="tsd-kind-icon">trace<wbr>Job<wbr>Id</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
<a href="serviceproviderdeleteexception.html#tracelevel" class="tsd-kind-icon">trace<wbr>Level</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
<a href="serviceproviderdeleteexception.html#init" class="tsd-kind-icon">init</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-external">
<a href="serviceproviderdeleteexception.html#tojson" class="tsd-kind-icon">toJSON</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static tsd-is-external">
<a href="serviceproviderdeleteexception.html#fromjs" class="tsd-kind-icon">fromJS</a>
</li>
</ul>
</li>
</ul>
<ul class="after-current">
</ul>
</nav>
</div>
</div>
</div>
<footer class="with-border-bottom">
<div class="container">
<h2>Legend</h2>
<div class="tsd-legend-group">
</div>
</div>
</footer>
<div class="container tsd-generator">
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p>
</div>
<div class="overlay"></div>
<script src="../assets/js/main.js"></script>
</body>
</html> |
docs/api/Auth0.ManagementApi.Clients.DeviceCredentialsClient.html | jerriep/auth0.net | <!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class DeviceCredentialsClient
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class DeviceCredentialsClient
">
<meta name="generator" content="docfx 2.33.1.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
</head>
<body data-spy="scroll" data-target="#affix">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="Auth0.ManagementApi.Clients.DeviceCredentialsClient">
<h1 id="Auth0_ManagementApi_Clients_DeviceCredentialsClient" data-uid="Auth0.ManagementApi.Clients.DeviceCredentialsClient" class="text-break">Class DeviceCredentialsClient
</h1>
<div class="markdown level0 summary"><p>Contains all the methods to call the /device-credentials endpoints.</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><a class="xref" href="Auth0.ManagementApi.Clients.ClientBase.html">ClientBase</a></div>
<div class="level2"><span class="xref">DeviceCredentialsClient</span></div>
</div>
<div classs="implements">
<h5>Implements</h5>
<div><a class="xref" href="Auth0.ManagementApi.Clients.IDeviceCredentialsClient.html">IDeviceCredentialsClient</a></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="Auth0.ManagementApi.Clients.html">Auth0.ManagementApi.Clients</a></h6>
<h6><strong>Assembly</strong>: cs.temp.dll.dll</h6>
<h5 id="Auth0_ManagementApi_Clients_DeviceCredentialsClient_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class DeviceCredentialsClient : ClientBase, IDeviceCredentialsClient</code></pre>
</div>
<h3 id="constructors">Constructors
</h3>
<a id="Auth0_ManagementApi_Clients_DeviceCredentialsClient__ctor_" data-uid="Auth0.ManagementApi.Clients.DeviceCredentialsClient.#ctor*"></a>
<h4 id="Auth0_ManagementApi_Clients_DeviceCredentialsClient__ctor_Auth0_Core_Http_ApiConnection_" data-uid="Auth0.ManagementApi.Clients.DeviceCredentialsClient.#ctor(Auth0.Core.Http.ApiConnection)">DeviceCredentialsClient(ApiConnection)</h4>
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="Auth0.ManagementApi.Clients.DeviceCredentialsClient.html">DeviceCredentialsClient</a> class.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public DeviceCredentialsClient(ApiConnection connection)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Auth0.Core.Http.ApiConnection.html">ApiConnection</a></td>
<td><span class="parametername">connection</span></td>
<td><p>The connection.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="methods">Methods
</h3>
<a id="Auth0_ManagementApi_Clients_DeviceCredentialsClient_CreateAsync_" data-uid="Auth0.ManagementApi.Clients.DeviceCredentialsClient.CreateAsync*"></a>
<h4 id="Auth0_ManagementApi_Clients_DeviceCredentialsClient_CreateAsync_DeviceCredentialCreateRequest_" data-uid="Auth0.ManagementApi.Clients.DeviceCredentialsClient.CreateAsync(DeviceCredentialCreateRequest)">CreateAsync(DeviceCredentialCreateRequest)</h4>
<div class="markdown level1 summary"><p>Creates a new device credential.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Task<DeviceCredential> CreateAsync(DeviceCredentialCreateRequest request)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">DeviceCredentialCreateRequest</span></td>
<td><span class="parametername">request</span></td>
<td><p>The request containing the details of the device credential to create.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Threading.Tasks.Task</span><<span class="xref">DeviceCredential</span>></td>
<td><p>Tnew newly created <see cref="!:DeviceCredential"></see></p>
</td>
</tr>
</tbody>
</table>
<a id="Auth0_ManagementApi_Clients_DeviceCredentialsClient_DeleteAsync_" data-uid="Auth0.ManagementApi.Clients.DeviceCredentialsClient.DeleteAsync*"></a>
<h4 id="Auth0_ManagementApi_Clients_DeviceCredentialsClient_DeleteAsync_System_String_" data-uid="Auth0.ManagementApi.Clients.DeviceCredentialsClient.DeleteAsync(System.String)">DeleteAsync(String)</h4>
<div class="markdown level1 summary"><p>Deletes a device credential.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Task DeleteAsync(string id)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">id</span></td>
<td><p>The id of the device credential to delete</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Threading.Tasks.Task</span></td>
<td><p>Task.</p>
</td>
</tr>
</tbody>
</table>
<a id="Auth0_ManagementApi_Clients_DeviceCredentialsClient_GetAllAsync_" data-uid="Auth0.ManagementApi.Clients.DeviceCredentialsClient.GetAllAsync*"></a>
<h4 id="Auth0_ManagementApi_Clients_DeviceCredentialsClient_GetAllAsync_System_String_System_Boolean_System_String_System_String_System_String_" data-uid="Auth0.ManagementApi.Clients.DeviceCredentialsClient.GetAllAsync(System.String,System.Boolean,System.String,System.String,System.String)">GetAllAsync(String, Boolean, String, String, String)</h4>
<div class="markdown level1 summary"><p>Gets a list of all the device credentials.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Task<IList<DeviceCredential>> GetAllAsync(string fields = null, bool includeFields = true, string userId = null, string clientId = null, string type = null)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">fields</span></td>
<td><p>A comma separated list of fields to include or exclude (depending on include_fields) from the result, empty to retrieve all fields.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">includeFields</span></td>
<td><p>True if the fields specified are to be excluded from the result, false otherwise (defaults to true).</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">userId</span></td>
<td><p>The user id of the devices to retrieve</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">clientId</span></td>
<td><p>The client id of the devices to retrieve.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">type</span></td>
<td><p>The type of credentials</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Threading.Tasks.Task</span><<span class="xref">System.Collections.Generic.IList</span><<span class="xref">DeviceCredential</span>>></td>
<td><p>A list of <see cref="!:DeviceCredential"></see> which conforms to the criteria specified.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="implements">Implements</h3>
<div>
<a class="xref" href="Auth0.ManagementApi.Clients.IDeviceCredentialsClient.html">IDeviceCredentialsClient</a>
</div>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.