# HG changeset patch # User Nicholas Jillings # Date 1493131776 -3600 # Node ID ed2c8a04b7c4adfb756d618517fab12f40e0fd31 # Parent 64a83c964fae60949cd46f135b489570595fbbe3 #141 Minor fixes to ordinal diff -r 64a83c964fae -r ed2c8a04b7c4 interfaces/ordinal.js --- a/interfaces/ordinal.js Tue Apr 25 15:47:18 2017 +0100 +++ b/interfaces/ordinal.js Tue Apr 25 15:49:36 2017 +0100 @@ -383,7 +383,7 @@ // If there are multiple value nodes (such as multiple scale / 2D scales), return an array of nodes with each value node having an 'interfaceName' attribute // Use storage.document.createElement('value'); to generate the XML node. var node = storage.document.createElement('value'); - node.textContent = this.slider.value; + node.textContent = this.getValue(); return node; };