From 3f1e8ee79af12435be466db2f661d3ac4382f047 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Fri, 13 Jul 2012 11:25:57 +0100 Subject: [PATCH] Removed old code --- core/modules/macros/chooser.js | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/core/modules/macros/chooser.js b/core/modules/macros/chooser.js index bf57768e9..04451f09f 100644 --- a/core/modules/macros/chooser.js +++ b/core/modules/macros/chooser.js @@ -31,37 +31,6 @@ exports.showChooser = function() { } }; -/* -Select the appropriate chooser item given a touch/mouse position in screen coordinates -*/ -// exports.select = function(y) { -// if(this.children.length > 0) { -// var targetIndex = Math.floor(this.children[0].domNode.childNodes.length * (y/window.innerHeight)), -// target = this.children[0].domNode.childNodes[targetIndex]; -// if(target) { -// this.deselect(); -// this.selectedNode = target; -// $tw.utils.addClass(target,"selected"); -// } -// } -// }; - -// exports.deselect = function() { -// if(this.selectedNode) { -// $tw.utils.removeClass(this.selectedNode,"selected"); -// this.selectedNode = null; -// } -// }; - -// exports.action = function() { -// if(this.selectedNode) { -// var navEvent = document.createEvent("Event"); -// navEvent.initEvent("tw-navigate",true,true); -// navEvent.navigateTo = this.selectedNode.getAttribute("data-link"); -// this.domNode.dispatchEvent(navEvent); -// } -// }; - /* Set the position of the chooser panel within its wrapper given a touch/mouse position in screen coordinates */