From 8a659955ccc314778afd064bd01fa1d4baf136fe Mon Sep 17 00:00:00 2001 From: David Rowe Date: Fri, 26 May 2017 13:02:26 +1200 Subject: [PATCH] Delete old script --- .../marketplace/stopwatch/stopwatchClient.js | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 unpublishedScripts/marketplace/stopwatch/stopwatchClient.js diff --git a/unpublishedScripts/marketplace/stopwatch/stopwatchClient.js b/unpublishedScripts/marketplace/stopwatch/stopwatchClient.js deleted file mode 100644 index 6284b86102..0000000000 --- a/unpublishedScripts/marketplace/stopwatch/stopwatchClient.js +++ /dev/null @@ -1,22 +0,0 @@ -// -// stopwatchServer.js -// -// Created by Ryan Huffman on 1/20/17. -// Copyright 2017 High Fidelity, Inc. -// -// Distributed under the Apache License, Version 2.0. -// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html -// - -(function() { - var messageChannel; - this.preload = function(entityID) { - this.messageChannel = "STOPWATCH-" + entityID; - }; - function click() { - Messages.sendMessage(this.messageChannel, 'click'); - } - this.startNearTrigger = click; - this.startFarTrigger = click; - this.clickDownOnEntity = click; -});