Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/docsy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorFabrizio Ferri Benedetti <algernon@gmail.com>2019-07-18 12:56:38 +0300
committerFabrizio Ferri-Benedetti <algernon@gmail.com>2019-07-18 13:01:07 +0300
commit6afcf68fcd7cc18880b807a6db1aaf0b74c34ef6 (patch)
tree773ac7e1aa44412d765143c768be53763ebff691 /static
parent08fadd1d37017181b1af14f0cbe5b86abfd437f0 (diff)
Cleanup
Diffstat (limited to 'static')
-rw-r--r--static/js/base.js65
-rw-r--r--static/js/search.js43
2 files changed, 0 insertions, 108 deletions
diff --git a/static/js/base.js b/static/js/base.js
deleted file mode 100644
index 49f27d0..0000000
--- a/static/js/base.js
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * Copyright 2018 Google LLC
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- https://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-(function($) {
-
- 'use strict';
-
- $(function() {
- $('[data-toggle="tooltip"]').tooltip();
- $('[data-toggle="popover"]').popover();
-
- $('.popover-dismiss').popover({
- trigger: 'focus'
- })
- });
-
-
- function bottomPos(element) {
- return element.offset().top + element.outerHeight();
- }
-
- // Bootstrap Fixed Header
- $(function() {
- var promo = $(".js-td-cover");
- if (!promo.length) {
- return
- }
-
- var promoOffset = bottomPos(promo);
- var navbarOffset = $('.js-navbar-scroll').offset().top;
-
- var threshold = Math.ceil($('.js-navbar-scroll').outerHeight());
- if ((promoOffset - navbarOffset) < threshold) {
- $('.js-navbar-scroll').addClass('navbar-bg-onscroll');
- }
-
-
- $(window).on('scroll', function() {
- var navtop = $('.js-navbar-scroll').offset().top - $(window).scrollTop();
- var promoOffset = bottomPos($('.js-td-cover'));
- var navbarOffset = $('.js-navbar-scroll').offset().top;
- if ((promoOffset - navbarOffset) < threshold) {
- $('.js-navbar-scroll').addClass('navbar-bg-onscroll');
- } else {
- $('.js-navbar-scroll').removeClass('navbar-bg-onscroll');
- $('.js-navbar-scroll').addClass('navbar-bg-onscroll--fade');
- }
- });
- });
-
-
-}(jQuery));
diff --git a/static/js/search.js b/static/js/search.js
deleted file mode 100644
index 83fbb15..0000000
--- a/static/js/search.js
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
-Copyright 2018 Google LLC
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- https://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-(function($) {
-
- 'use strict';
-
- var Search = {
- init: function() {
- $(document).ready(function() {
- $(document).on('keypress', '.td-search-input', function(e) {
- if (e.keyCode !== 13) {
- return
- }
-
- var query = $(this).val();
- var searchPage = "{{ "search/" | absURL }}?q=" + query;
- document.location = searchPage;
-
- return false;
- });
-
- });
- },
- };
-
- Search.init();
-
-
-}(jQuery));