From d088234d67f3aa422796d922e08a07949dc53d83 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Thu, 4 Jun 2015 23:10:31 +0200 Subject: Move public files to ./public_html ./data/local is not moved because it contains likely untracked files and moving it would throw an error when updating. Signed-off-by: Florian Pritz --- data/js/util.js | 60 --------------------------------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 data/js/util.js (limited to 'data/js/util.js') diff --git a/data/js/util.js b/data/js/util.js deleted file mode 100644 index af3635673..000000000 --- a/data/js/util.js +++ /dev/null @@ -1,60 +0,0 @@ -(function () { -'use strict'; -define(['jquery'], function () { - var PrivateFunctions = { - highlightLine: function (id) { - this.clearLineHighlights(); - var line = $(id).parents('.table-row'); - line.addClass("highlight_line"); - }, - clearLineHighlights: function () { - $('.highlight_line').removeClass('highlight_line'); - } - }; - var Util = { - fixedEncodeURIComponent: function (string) { - var encodedString = encodeURIComponent(string); - encodedString = encodedString.replace(/[!'()]/g, escape); - encodedString = encodedString.replace(/\*/g, "%2A"); - - return encodedString; - }, - highlightLineFromHash: function () { - var hash = window.location.hash; - if (hash.match(/^#n(?:-.+-)?\d+$/) === null) { - PrivateFunctions.clearLineHighlights(); - return; - } - - PrivateFunctions.highlightLine(hash); - }, - focusDropdownInput: function (target) { - setTimeout(function () { - var dropDown = $(target).siblings('.dropdown-menu'); - dropDown.find('input').trigger('focus'); - }, 0); - }, - setTabwidth: function (value) { - value = value || 8; - $('span.tabwidth-value').html(value); - $('.tabwidth-form input').val(value); - $('.highlight pre').css('tab-size', value); - localStorage.setItem('tabwidth', value); - }, - setTabwidthFromLocalStorage: function () { - this.setTabwidth(localStorage.getItem('tabwidth')); - }, - setLineWrap: function (lines_wrapped) { - var whitespaceMode = lines_wrapped ? 'pre-wrap' : 'pre'; - $('.highlight > pre').css('white-space', whitespaceMode); - localStorage.setItem('lines_wrapped', lines_wrapped); - }, - toggleLineWrap: function() { - this.setLineWrap( - localStorage.getItem('lines_wrapped') !== 'true' - ); - } - }; - return Util; -}); -})(); -- cgit v1.2.3-24-g4f1b