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
| PhantomJS 1.9.8 (Mac OS X) ReactDropButton should close an already open drop box when the drop trigger is clicked FAILED | |
| Expected ReactDOMComponent({ _tag: 'div', tagName: 'DIV', props: Object({ className: 'rdb-drop-box', children: [ Object({ type: Function, key: null, ref: null, _owner: null, _context: Object({ }), _store: Object({ validated: true, props: Object({ children: 'Menu content here.' }) }) }) ] }), _owner: ({ props: Object({ children: [ Object({ type: Function, key: null, ref: null, _owner: null, _context: Object({ }), _store: Object({ validated: true, props: Object({ children: 'Open menu' }) }) }), Object({ type: Function, key: null, ref: null, _owner: null, _context: Object({ }), _store: Object({ validated: true, props: Object({ children: 'Menu content here.' }) }) }) ], layoutMode: '' }), _owner: null, _lifeCycleState: 'MOUNTED', _pendingCallbacks: null, _currentElement: Object({ type: Function, key: null, ref: null, _owner: null, _context: Object({ }), _store: Object({ validated: false, p |
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
| var React = require('react/addons'); | |
| var TestUtils = React.addons.TestUtils; | |
| var ReactDropButton = require('../lib/react-drop-button.jsx'); | |
| var DropTrigger = ReactDropButton.DropTrigger; | |
| var DropBoxContent = ReactDropButton.DropBoxContent; | |
| describe("ReactDropButton", function() { | |
| var component, outsideComponent; | |
| beforeEach(function() { |
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
| var React = require('react/addons'); | |
| var TestUtils = React.addons.TestUtils; | |
| var ReactDropButton = require('../lib/react-drop-button.jsx'); | |
| var DropTrigger = ReactDropButton.DropTrigger; | |
| var DropBoxContent = ReactDropButton.DropBoxContent; | |
| describe("ReactDropButton", function() { | |
| var component, outsideComponent; | |
| beforeEach(function() { |
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
| default: &default | |
| adapter: <%= defined?(JRUBY_VERSION) ? 'jdbcmysql' : 'mysql2' %> | |
| encoding: utf8 | |
| database: eads-fadb-query-page | |
| pool: 5 | |
| local_infile: true | |
| username: root | |
| password: | |
| socket: /tmp/mysql.sock |
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 html> | |
| <html lang="en"> | |
| <head> | |
| <title>dc.js - Arc Gauge Example</title> | |
| <meta charset="UTF-8"> | |
| <link rel="stylesheet" type="text/css" href="../css/dc.css"/> | |
| </head> | |
| <body> | |
| <div id="arc" ></div> |
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
| /** | |
| ## Arc Gauge | |
| Includes: [Base Mixin](#base-mixin) | |
| The Arc Gauge is a way to see data displacement similar to the Bar Gauge | |
| but in curved speedometer-like fashion. | |
| #### dc.arcGauge(parent[, chartGroup]) | |
| Parameters: |
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
| .dc-bar-gauge | |
| { | |
| width: 100%; | |
| height: 6px; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| float: left; |