Changeset - ddd1e3f8856e
[Not reviewed]
default
0 1 0
drewp@bigasterisk.com - 7 years ago 2018-06-08 23:14:32
drewp@bigasterisk.com
graph widget wider so it doesn't wrap
Ignore-this: b69a20ac61f53da51174f5762164fabd
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
light9/web/rdfdb-synced-graph.html
Show inline comments
 
<link rel="import" href="/lib/polymer/polymer-element.html">
 
<script src="/node_modules/n3/n3-browser.js"></script>
 
<script src="/lib/async/dist/async.js"></script>
 
      <script src="/lib/underscore/underscore-min.js"></script>
 

	
 
<dom-module id="rdfdb-synced-graph">
 
  <template>
 
    <style>
 
     :host {
 
         display: inline-block;
 
         border: 1px solid gray;
 
         width: 20em;
 
         min-width: 22em;
 
         background: #05335a;
 
         color: #4fc1d4;
 
     }
 
    </style>
 
    graph: [[status]]
 
  </template>
 
  <script src="rdfdbclient.js"></script>
 
  <script src="graph.js"></script>
 
  <script>
 
   class RdfdbSyncedGraph extends Polymer.Element {
 
       static get is() { return "rdfdb-synced-graph"; }
 
       
0 comments (0 inline, 0 general)