made with esnextbin
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"> | |
<head> | |
<style> | |
table { | |
border-collapse: collapse; | |
} | |
table, th, td { | |
border: 1px solid black; | |
} |
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> | |
<head id="Head1"> | |
<meta charset="utf-8"> | |
<title>Achivements</title> | |
<script src="//vk.com/js/api/xd_connection.js?2" type="text/javascript"></script> | |
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> | |
<script type="text/javascript"> | |
var points = {}, | |
polls = [], |
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
const {div, h, p, button, ul, li, makeDOMDriver} = CycleDOM; | |
const {Observable} = Rx; | |
const isolate = CycleIsolate; | |
function OriginalInput(sources) { | |
const input$ = sources.DOM | |
.events('input') | |
.map(ev => ev.target.value); | |
const vtree$ = sources.Assign |
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
// Rx | |
function createStore(actionsToReducers, initialState = {}) { | |
let dispatch; | |
const action$ = $.create(observer => { | |
dispatch = action => observer.onNext(action) | |
}); | |
const reducer$ = actionsToReducers(action$); | |
const state$ = reducer$ | |
.scan((state, [scope, reducer]) => |
made with esnextbin
made with esnextbin
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
// @flow | |
import FlipMove from "./FlipMove"; | |
declare class Class0 extends Element<> { | |
accessKey: string, | |
accessKeyLabel: string, | |
className: string, | |
contentEditable: string, | |
contextMenu: ?HTMLMenuElement, | |
dataset: { [key: string]: string }, |
made with esnextbin
made with esnextbin
OlderNewer