tools
/
gw2-tooltips
Archived
1
0
Fork 0

Use locally-hosted additional libraries

This commit is contained in:
Florine W. Dekker 2021-09-10 15:40:34 +02:00
parent b5fe514523
commit f6fd712f17
Signed by: FWDekker
GPG Key ID: 78B3EAF58145AF25
9 changed files with 44 additions and 9 deletions

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2016 Felix W. Dekker
Copyright (c) 2016 F.W. Dekker
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -6,19 +6,19 @@
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="A JavaScript plugin to add informative item tooltips for Guild Wars 2." />
<meta name="keywords" content="Guild Wars 2 gw2 item tooltip information hover" />
<meta name="author" content="Felix Dekker" />
<meta name="author" content="F.W. Dekker" />
<meta name="application-name" content="GW2 item tooltip" />
<!-- JQuery / Bootstrap -->
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<script src="lib/jquery.min.js"></script>
<script src="lib/bootstrap.min.js"></script>
<link rel="stylesheet" href="lib/bootstrap.min.css" />
<!-- Syntax highlighter -->
<!-- http://alexgorbatchev.com/SyntaxHighlighter/ -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/SyntaxHighlighter/3.0.83/scripts/shCore.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/SyntaxHighlighter/3.0.83/scripts/shBrushXml.min.js"></script>
<link type="text/css" rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/SyntaxHighlighter/3.0.83/styles/shCoreDefault.min.css"/>
<script type="text/javascript" src="lib/shCore.min.js"></script>
<script type="text/javascript" src="lib/shBrushXml.min.js"></script>
<link type="text/css" rel="stylesheet" href="lib/shCoreDefault.min.css"/>
<script type="text/javascript">SyntaxHighlighter.all();</script>
<!-- Custom scripts and styling -->

View File

@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="A JavaScript plugin to add informative item tooltips for Guild Wars 2." />
<meta name="keywords" content="Guild Wars 2 gw2 item tooltip information hover" />
<meta name="author" content="Felix Dekker" />
<meta name="author" content="F.W. Dekker" />
<meta name="application-name" content="GW2 item tooltip" />
<!-- JQuery / Bootstrap -->

6
lib/bootstrap.min.css vendored Normal file

File diff suppressed because one or more lines are too long

7
lib/bootstrap.min.js vendored Normal file

File diff suppressed because one or more lines are too long

4
lib/jquery.min.js vendored Normal file

File diff suppressed because one or more lines are too long

6
lib/shBrushXml.min.js vendored Normal file
View File

@ -0,0 +1,6 @@
/*!
* SyntaxHighlighter 3.0.83
* by Alex Gorbatchev
* Licensed under MIT
*/
(function(){function e(){function e(e){var t=SyntaxHighlighter.Match,r=e[0],i=new XRegExp("(&lt;|<)[\\s\\/\\?]*(?<name>[:\\w-\\.]+)","xg").exec(r),s=[];if(null!=e.attributes)for(var n,a=new XRegExp("(?<name> [\\w:\\-\\.]+)\\s*=\\s*(?<value> \".*?\"|'.*?'|\\w+)","xg");null!=(n=a.exec(r));)s.push(new t(n.name,e.index+n.index,"color1")),s.push(new t(n.value,e.index+n.index+n[0].indexOf(n.value),"string"));return null!=i&&s.push(new t(i.name,e.index+i[0].indexOf(i.name),"keyword")),s}this.regexList=[{regex:new XRegExp("(\\&lt;|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](\\&gt;|>)","gm"),css:"color2"},{regex:SyntaxHighlighter.regexLib.xmlComments,css:"comments"},{regex:new XRegExp("(&lt;|<)[\\s\\/\\?]*(\\w+)(?<attributes>.*?)[\\s\\/\\?]*(&gt;|>)","sg"),func:e}]}"undefined"!=typeof require?SyntaxHighlighter=require("shCore").SyntaxHighlighter:null,e.prototype=new SyntaxHighlighter.Highlighter,e.aliases=["xml","xhtml","xslt","html"],SyntaxHighlighter.brushes.Xml=e,"undefined"!=typeof exports?exports.Brush=e:null})();

6
lib/shCore.min.js vendored Normal file

File diff suppressed because one or more lines are too long

6
lib/shCoreDefault.min.css vendored Normal file

File diff suppressed because one or more lines are too long