mirror of
https://github.com/overte-org/overte.git
synced 2025-04-29 12:42:42 +02:00
21 lines
497 B
JavaScript
21 lines
497 B
JavaScript
//
|
|
// marketplacesDirectory.js
|
|
//
|
|
// Created by David Rowe on 12 Nov 2016.
|
|
// Copyright 2016 High Fidelity, Inc.
|
|
//
|
|
// Injected into marketplaces directory page.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
// Only used in WebTablet.
|
|
|
|
$(document).ready(function () {
|
|
|
|
// Remove e-mail hyperlink.
|
|
var letUsKnow = $("#letUsKnow");
|
|
letUsKnow.replaceWith(letUsKnow.html());
|
|
|
|
});
|