diff --git a/clipboard.min.js b/clipboard.min.js new file mode 100644 index 0000000..1993676 --- /dev/null +++ b/clipboard.min.js @@ -0,0 +1,7 @@ +/*! + * clipboard.js v1.6.1 + * https://zenorocha.github.io/clipboard.js + * + * Licensed MIT © Zeno Rocha + */ +!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var t;t="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,t.Clipboard=e()}}(function(){var e,t,n;return function e(t,n,o){function i(a,c){if(!n[a]){if(!t[a]){var l="function"==typeof require&&require;if(!c&&l)return l(a,!0);if(r)return r(a,!0);var u=new Error("Cannot find module '"+a+"'");throw u.code="MODULE_NOT_FOUND",u}var s=n[a]={exports:{}};t[a][0].call(s.exports,function(e){var n=t[a][1][e];return i(n?n:e)},s,s.exports,e,t,n,o)}return n[a].exports}for(var r="function"==typeof require&&require,a=0;a0&&void 0!==arguments[0]?arguments[0]:{};this.action=t.action,this.emitter=t.emitter,this.target=t.target,this.text=t.text,this.trigger=t.trigger,this.selectedText=""}},{key:"initSelection",value:function e(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function e(){var t=this,n="rtl"==document.documentElement.getAttribute("dir");this.removeFake(),this.fakeHandlerCallback=function(){return t.removeFake()},this.fakeHandler=document.body.addEventListener("click",this.fakeHandlerCallback)||!0,this.fakeElem=document.createElement("textarea"),this.fakeElem.style.fontSize="12pt",this.fakeElem.style.border="0",this.fakeElem.style.padding="0",this.fakeElem.style.margin="0",this.fakeElem.style.position="absolute",this.fakeElem.style[n?"right":"left"]="-9999px";var o=window.pageYOffset||document.documentElement.scrollTop;this.fakeElem.style.top=o+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,document.body.appendChild(this.fakeElem),this.selectedText=(0,i.default)(this.fakeElem),this.copyText()}},{key:"removeFake",value:function e(){this.fakeHandler&&(document.body.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(document.body.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function e(){this.selectedText=(0,i.default)(this.target),this.copyText()}},{key:"copyText",value:function e(){var t=void 0;try{t=document.execCommand(this.action)}catch(e){t=!1}this.handleResult(t)}},{key:"handleResult",value:function e(t){this.emitter.emit(t?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function e(){this.target&&this.target.blur(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function e(){this.removeFake()}},{key:"action",set:function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"copy";if(this._action=t,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function e(){return this._action}},{key:"target",set:function e(t){if(void 0!==t){if(!t||"object"!==("undefined"==typeof t?"undefined":r(t))||1!==t.nodeType)throw new Error('Invalid "target" value, use a valid Element');if("copy"===this.action&&t.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===this.action&&(t.hasAttribute("readonly")||t.hasAttribute("disabled")))throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');this._target=t}},get:function e(){return this._target}}]),e}();e.exports=c})},{select:5}],8:[function(t,n,o){!function(i,r){if("function"==typeof e&&e.amd)e(["module","./clipboard-action","tiny-emitter","good-listener"],r);else if("undefined"!=typeof o)r(n,t("./clipboard-action"),t("tiny-emitter"),t("good-listener"));else{var a={exports:{}};r(a,i.clipboardAction,i.tinyEmitter,i.goodListener),i.clipboard=a.exports}}(this,function(e,t,n,o){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function c(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function l(e,t){var n="data-clipboard-"+e;if(t.hasAttribute(n))return t.getAttribute(n)}var u=i(t),s=i(n),f=i(o),d=function(){function e(e,t){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:{};this.action="function"==typeof t.action?t.action:this.defaultAction,this.target="function"==typeof t.target?t.target:this.defaultTarget,this.text="function"==typeof t.text?t.text:this.defaultText}},{key:"listenClick",value:function e(t){var n=this;this.listener=(0,f.default)(t,"click",function(e){return n.onClick(e)})}},{key:"onClick",value:function e(t){var n=t.delegateTarget||t.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new u.default({action:this.action(n),target:this.target(n),text:this.text(n),trigger:n,emitter:this})}},{key:"defaultAction",value:function e(t){return l("action",t)}},{key:"defaultTarget",value:function e(t){var n=l("target",t);if(n)return document.querySelector(n)}},{key:"defaultText",value:function e(t){return l("text",t)}},{key:"destroy",value:function e(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}],[{key:"isSupported",value:function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:["copy","cut"],n="string"==typeof t?[t]:t,o=!!document.queryCommandSupported;return n.forEach(function(e){o=o&&!!document.queryCommandSupported(e)}),o}}]),t}(s.default);e.exports=h})},{"./clipboard-action":7,"good-listener":4,"tiny-emitter":6}]},{},[8])(8)}); \ No newline at end of file diff --git a/data/TLC01_resized.jpg b/data/TLC01_resized.jpg new file mode 100644 index 0000000..d91ca8b Binary files /dev/null and b/data/TLC01_resized.jpg differ diff --git a/data/TLC02_resized.jpg b/data/TLC02_resized.jpg new file mode 100644 index 0000000..64d5a30 Binary files /dev/null and b/data/TLC02_resized.jpg differ diff --git a/data/TLC03.gif b/data/TLC03.gif deleted file mode 100644 index 21513f3..0000000 Binary files a/data/TLC03.gif and /dev/null differ diff --git a/data/TLC03.jpg b/data/TLC03.jpg new file mode 100644 index 0000000..ebad6d2 Binary files /dev/null and b/data/TLC03.jpg differ diff --git a/data/TLC03_resized.jpg b/data/TLC03_resized.jpg new file mode 100644 index 0000000..b595ca3 Binary files /dev/null and b/data/TLC03_resized.jpg differ diff --git a/data/TLC04.jpg b/data/TLC04.jpg index 739c858..ebad6d2 100644 Binary files a/data/TLC04.jpg and b/data/TLC04.jpg differ diff --git a/data/TLC04_resized.jpg b/data/TLC04_resized.jpg new file mode 100644 index 0000000..ebad6d2 Binary files /dev/null and b/data/TLC04_resized.jpg differ diff --git a/data/TLC05.gif b/data/TLC05.gif deleted file mode 100644 index 21513f3..0000000 Binary files a/data/TLC05.gif and /dev/null differ diff --git a/data/TLC06.gif b/data/TLC06.gif deleted file mode 100644 index 21513f3..0000000 Binary files a/data/TLC06.gif and /dev/null differ diff --git a/data/TLC07.gif b/data/TLC07.gif deleted file mode 100644 index 21513f3..0000000 Binary files a/data/TLC07.gif and /dev/null differ diff --git a/data/TLC08.gif b/data/TLC08.gif deleted file mode 100644 index 21513f3..0000000 Binary files a/data/TLC08.gif and /dev/null differ diff --git a/design.css b/design.css index e689ac1..e84a0c8 100644 --- a/design.css +++ b/design.css @@ -4,3 +4,18 @@ padding-right: 15px; padding-left: 15px; } + + +.col-sm { + margin-top: 3em; + margin-bottom: 3em; + margin-left: 3em; + margin-right: 3em; +} + + +.location{ + text-align: center; +} + + diff --git a/index_neu.html b/index_neu.html index 5ea613a..f7adb52 100644 --- a/index_neu.html +++ b/index_neu.html @@ -16,6 +16,7 @@ + @@ -116,43 +117,140 @@
-
25%
-
25%
-
25%
-
25%
-
-
-
-
25%
-
25%
-
25%
-
25%
-
-
+ +
+ + TLC01 + +
TLC01 - Salmenkopf, Freistett
+
+ +
+
+ + +
+ + TLC02 + +
TLC02 - Salmenkopf, Freistett
+
+ +
+
+ + +
+ + TLC03 + +
TLC03 - not used yet
+
+ +
+
+ + +
+ + TLC04 + +
TLC04 - Demo
+
+ +
+
+ +
+ + + - - - + + + +