diff --git a/scripts/system/friends.js b/scripts/system/friends.js deleted file mode 100644 index 6afef1579f..0000000000 --- a/scripts/system/friends.js +++ /dev/null @@ -1,33 +0,0 @@ -"use strict"; - -// -// friends.js -// -// Created by Faye Li on 25 Jan 2017. -// 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() { // BEGIN LOCAL_SCOPE - var FRIENDS_URL = "https://metaverse.highfidelity.com/user/friends"; - var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system"); - var button = tablet.addButton({ - icon: "icons/tablet-icons/people-i.svg", - text: "Friends" - }); - - function onClicked() { - tablet.gotoWebScreen(FRIENDS_URL); - } - - button.clicked.connect(onClicked); - - function cleanup() { - button.clicked.disconnect(onClicked); - tablet.removeButton(button); - } - - Script.scriptEnding.connect(cleanup); -}()); // END LOCAL_SCOPE diff --git a/scripts/system/html/users-friends.html b/scripts/system/html/users-friends.html deleted file mode 100644 index 8890b2a109..0000000000 --- a/scripts/system/html/users-friends.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - Users Online - - - - - - -
-
-
Users Online (Friends)
- -
-
-
-
-
- - - - \ No newline at end of file