This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Desktop Entry] | |
Encoding=UTF-8 | |
Name=Tutorial | |
Comment=Tutorial on getting started with Plasma 5 plasmoids. | |
Type=Service | |
X-Plasma-API=declarativeappletscript | |
X-Plasma-MainScript=ui/main.qml | |
X-KDE-ServiceTypes=Plasma/Applet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function EventSource (url) | |
{ | |
this.url = url; | |
this.offset = 0; | |
this.prefix = "data: "; | |
this._resetWorkaround(); | |
} | |
EventSource.prototype._resetWorkaround = function () { | |
if (this.ajax) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>experiment: html custom element directory tree</title> | |
<meta charset="utf-8"/> | |
<style> | |
body { | |
font-family: monospace; | |
font-size: 11pt; | |
} | |
foo-dir { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en" dir="ltr"> | |
<head> | |
<meta charset="utf-8"> | |
<title>vue.js tree-list form component experiment 2</title> | |
<script src="vue.js"></script> | |
</head> | |
<body> | |
<div style="display:flex"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en" dir="ltr"> | |
<head> | |
<meta charset="utf-8"> | |
<title>vue.js tree-list form component experiment</title> | |
<script src="vue.js"></script> | |
</head> | |
<body> | |
<h2>vue.js tree-list form component experiment</h2> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Ace custom autocomplete test</title> | |
<script src="https://ajaxorg.github.io/ace-builds/src-min-noconflict/ace.js"></script> | |
<script src="https://ajaxorg.github.io/ace-builds/src-min-noconflict/ext-language_tools.js"></script> | |
<style> | |
body { | |
overflow: hidden; |