diff options
Diffstat (limited to 'data/js/util.js')
-rw-r--r-- | data/js/util.js | 60 |
1 files changed, 0 insertions, 60 deletions
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; -}); -})(); |