This file contains hidden or 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
// | |
// Hulu.plist | |
// BeardedSpice | |
// | |
// Created by Justin Hickman on 2018-09-13. | |
// | |
// strategy/site notes | |
// - favorite, not implemented on this site | |
// - next/prev uses the fastforward and rewind button elements click() event this will do the 10 second skipping. | |
// - track info uses first and second line elements as well as the network logo (currently disabled) |
This file contains hidden or 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
final Grid<Stock> grid = new Grid<Stock>(store, cm) { | |
@Override | |
protected void onRightClick(Event event) { | |
EventTarget eventTarget = event.getEventTarget(); | |
List<Stock> selectedItems = getSelectionModel().getSelectedItems(); | |
boolean onSelectedRow = false; | |
for (Stock selectedItem : selectedItems) { | |
int index = store.indexOf(selectedItem); | |
Element selectedRow = getView().getRow(index); | |
if (selectedRow.isOrHasChild(XElement.as(eventTarget))) { |
This file contains hidden or 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
input::-ms-clear { | |
display: none; | |
} |
This file contains hidden or 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
<html> | |
<head> | |
</head> | |
<body> | |
<input type="text" /> | |
</body> | |
</html> |
This file contains hidden or 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
<body> | |
<div class='outer'></div> | |
<script> | |
var outer = document.querySelector('.outer'); | |
var b = document.createElement('BUTTON'); | |
// setup event handlers | |
b.innerHTML = "Click me"; |
This file contains hidden or 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
<body> | |
<div class='outer'></div> | |
<script> | |
var outer = document.querySelector('.outer'); | |
var b = document.createElement('BUTTON'); | |
// setup event handlers | |
b.innerHTML = "Click me"; |
This file contains hidden or 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
--- HandlerEvaluator-orig.java 2012-12-03 21:29:39.000000000 -0600 | |
+++ HandlerEvaluator.java 2012-12-03 21:30:40.000000000 -0600 | |
@@ -291,15 +291,18 @@ | |
* equality. For instance: | |
* | |
* handlerType => TableHandler<String> | |
- * subjectHandler => TableHandler | |
+ * subjectHandler => TableHandler<?> | |
* | |
* This is done as an alternative handler method to preserve the |
This file contains hidden or 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 ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent"> | |
<ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:border="urn:import:com.sencha.gxt.ui.client.widget.container.border" | |
xmlns:gxt="urn:import:com.sencha.gxt.ui.client.widget"> | |
<ui:with type="com.sencha.gxt.ui.client.util.Margins" field="northMargins"> | |
<ui:attributes top="0" right="0" bottom="5" left="0" /> | |
</ui:with> | |
<ui:with type="com.sencha.gxt.ui.client.util.Margins" field="westMargins"> | |
<ui:attributes top="0" right="5" bottom="0" left="0" /> | |
</ui:with> |