aboutsummaryrefslogtreecommitdiffstats
path: root/site/docs/assets/js/api.js
diff options
context:
space:
mode:
Diffstat (limited to 'site/docs/assets/js/api.js')
-rw-r--r--site/docs/assets/js/api.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/site/docs/assets/js/api.js b/site/docs/assets/js/api.js
deleted file mode 100644
index 08f41fa0..00000000
--- a/site/docs/assets/js/api.js
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
- */
-
-
-function addTag(rowElement, tag) {
- var tags = $(rowElement).find('.tags');
- if (tags.length == 0) {
- tags = $('<div class="tags"></div>');
- $(rowElement).find('td:first').append(tags);
- }
- tags.append('<div class="tags__tag">' + tag + '</div>')
-}
-
-$(document).ready(function () {
- $('[data-platform]').each(function (ind, element) {
- var platform = element.getAttribute('data-platform');
- addTag(element, platform)
- });
-});