GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 11-11 lines in 2 locations

third-party/bootstrap/bootstrap-3.3.7-dist/js/bootstrap.js 2 locations

@@ 1859-1869 (lines=11) @@
1856
  // POPOVER PLUGIN DEFINITION
1857
  // =========================
1858
1859
  function Plugin(option) {
1860
    return this.each(function () {
1861
      var $this   = $(this)
1862
      var data    = $this.data('bs.popover')
1863
      var options = typeof option == 'object' && option
1864
1865
      if (!data && /destroy|hide/.test(option)) return
1866
      if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
1867
      if (typeof option == 'string') data[option]()
1868
    })
1869
  }
1870
1871
  var old = $.fn.popover
1872
@@ 1750-1760 (lines=11) @@
1747
  // TOOLTIP PLUGIN DEFINITION
1748
  // =========================
1749
1750
  function Plugin(option) {
1751
    return this.each(function () {
1752
      var $this   = $(this)
1753
      var data    = $this.data('bs.tooltip')
1754
      var options = typeof option == 'object' && option
1755
1756
      if (!data && /destroy|hide/.test(option)) return
1757
      if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
1758
      if (typeof option == 'string') data[option]()
1759
    })
1760
  }
1761
1762
  var old = $.fn.tooltip
1763