This repository has been archived by the owner on Dec 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
93 lines (88 loc) · 3.47 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<meta name="robots" content="noindex">
<meta http-equiv="Cache-control" content="public">
<meta http-equiv="Cache-Control" content="max-age=1209600">
<meta charset="UTF-8">
<title>MuseScore Connect</title>
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<link rel="stylesheet" type="text/css" href="src/style.css" inline>
</head>
<body>
<div id="page">
<div class="spotlight-title" ><a href="https://musescore.com/">ONLINE COMMUNITY</a></div>
<form class="search" action="https://musescore.com/sheetmusic" accept-charset="UTF-8" method="get" id="search-form">
<div>
<input name="text" type="text" placeholder="Find sheet music ..." id="search-text">
<button type="submit" >Search<span class="icon-search" id="search-submit"></span></button>
</div>
</form>
<div class="border"></div>
<div id="container">
</div>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-11896755-10', 'auto');
ga('send', 'pageview');
if (typeof(mscore) !== 'undefined' && typeof(mscore.isInstalledExtension)!== 'undefined') {
ga('send', {
hitType: 'event',
eventAction: 'extension_check',
eventLabel:mscore.isInstalledExtension("mdl")?"Mdl installed":"Mdl not installed",
eventValue: mscore.isInstalledExtension("mdl") ? 1 : 0
});
}
</script>
<script>
var searchSubmit = document.getElementById('search-form');
searchSubmit.addEventListener("submit", function (event) {
event.preventDefault();
var searchText = document.getElementById('search-text');
if (searchText.value != "") {
var url = document.getElementById('search-form').action + '?text=' + encodeURIComponent(searchText.value) + "&utm_source=connect&utm_medium=editor&utm_campaign=connect";
if (typeof(mscore) == 'undefined') {
window.location = url;
}
else {
mscore.openExternalLink(url);
}
}
});
</script>
<script src="src/bundle.js" inline></script>
<script>
</script>
<!-- Yandex.Metrika counter -->
<script type="text/javascript" >
(function (d, w, c) {
(w[c] = w[c] || []).push(function() {
try {
w.yaCounter46887714 = new Ya.Metrika({
id:46887714,
clickmap:true,
trackLinks:true,
accurateTrackBounce:true,
webvisor:true
});
} catch(e) { }
});
var n = d.getElementsByTagName("script")[0],
s = d.createElement("script"),
f = function () { n.parentNode.insertBefore(s, n); };
s.type = "text/javascript";
s.async = true;
s.src = "https://mc.yandex.ru/metrika/watch.js";
if (w.opera == "[object Opera]") {
d.addEventListener("DOMContentLoaded", f, false);
} else { f(); }
})(document, window, "yandex_metrika_callbacks");
</script>
<noscript><div><img src="https://mc.yandex.ru/watch/46887714" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
<!-- /Yandex.Metrika counter -->
</body>
</html>