This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"apiVersion": "apiextensions.k8s.io/v1", | |
"kind": "CustomResourceDefinition", | |
"metadata": { | |
"name": "kafkas.kafka.strimzi.io", | |
"labels": { | |
"app": "strimzi", | |
"strimzi.io/crd-install": "true", | |
"component": "kafkas.kafka.strimzi.io-crd" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @author Jacky Nguyen | |
* @class Ux.event.recognizer.MouseWheelDrag | |
* | |
* Ext.Loader.setPath('Ux', '/path/to/your/app/ux'); | |
* | |
* Ext.application({ | |
* // ... | |
* eventPublishers: { | |
* touchGesture: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html lang="en-US"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta id="extViewportMeta" name="viewport" | |
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<meta name="apple-touch-fullscreen" content="yes"> | |
<title></title> | |
<style type="text/css"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<link rel="stylesheet" href="../../resources/css/sencha-touch.css"> | |
<style type="text/css"> | |
#video .x-innerhtml, #video iframe { | |
position: absolute; | |
left: 0; | |
top: 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.x-scroll-indicator, .x-scroll-indicator-csstransform { | |
opacity: 0.5; | |
-webkit-transition: opacity 0.2s ease-out; | |
} | |
.x-scroll-indicator { | |
background: #333; | |
-webkit-border-radius: 4px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
applyFoo: function(foo) { | |
var currentFooInstance = this.getFoo(); | |
// If foo config is an instance of Foo class, destroy the current instance (if it exists) and replace with the new one | |
if (foo instanceof Foo) { | |
if (currentFooInstance) { | |
currentFooInstance.destroy(); | |
} | |
currentFooInstance = foo; |