-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
64 lines (57 loc) · 3.41 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
<html>
<head>
<title>Move to Spotify</title>
<link href="css/style.css" rel="stylesheet" />
<link href="bower_components/toastr/dist/toastr.css" rel="stylesheet" />
<link href="bower_components/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
<script src="bower_components/bLazy/blazy.min.js"></script>
<script src="bower_components/sprintf/dist/sprintf.min.js"></script>
<script src="bower_components/toastr/dist/toastr.js"></script>
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/angular-sanitize/angular-sanitize.min.js"></script>
<script src="bower_components/angular-local-storage/dist/angular-local-storage.min.js"></script>
<script src="js/app/app.js"></script>
<script src="js/app/app.config.js"></script>
<script src="js/app/rdio/service.rdio.js"></script>
<script src="js/app/rdio/rdio.js"></script>
<script src="js/app/spotify/service.spotify.js"></script>
<script src="js/app/spotify/spotify.js"></script>
<script src="js/app/library/service.library.js"></script>
<script src="js/app/library/library.js"></script>
<script src="js/app/notifications/service.notifications.js"></script>
</head>
<body ng-app="MoveToSpotify">
<div id="apps">
<rdio id="rdio"></rdio>
<spotify id="spotify"></spotify>
<div id="notes">
<div class="share">
<a href="https://twitter.com/share" class="twitter-share-button"{count} data-url="http://move.152.io" data-text="Transfer your #rdio library to #spotify #rdioexodus" data-size="large">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</div>
<div class="donate">
<b>If this site helped you please donate to</b><br/>
<a target="_blank" href="https://secure.ppaction.org/site/Donation2?df_id=12913&12913.donation=form1"><img src="images/pp-logo.png" /></a>
</div>
<ol>
<li>Connect to Rdio</li>
<li>Get your library from Rdio</li>
<li>Connect to Spotify</li>
<li>Search Spotify for album matches</li>
<li>Save albums to Spotify</li>
</ol>
<p>Feel free to contact me <a href="https://twitter.com/metric152">here</a></p><br/>
<p class="fyi">Spotify has a 10,000 song library limit. If your library is larger than that not everything will transfer. If you have Spotify installed you can use <i class="fa fa-external-link fa-lg"></i> to add missed albums.</p>
</div>
</div>
<library></library>
<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-71259654-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>