Skip to content
This repository was archived by the owner on Jun 23, 2019. It is now read-only.

Commit 9a58e3b

Browse files
author
Shawn Chang
committed
Fix media link not working.
Fix when media is from SoundCloud.
1 parent b6167ac commit 9a58e3b

File tree

25 files changed

+340
-294
lines changed

25 files changed

+340
-294
lines changed

.gitignore

Lines changed: 57 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,58 @@
22
# Generated files
33
generated
44

5+
# Created by https://www.gitignore.io/api/sass,bower,node,grunt,windows,linux,osx,intellij
56

6-
# Keywords: Windows, Linux, OSX, IntelliJ, Node, Bower, Sass
7+
### Sass ###
8+
.sass-cache/
9+
*.css.map
10+
11+
12+
### Bower ###
13+
bower_components
14+
.bower-cache
15+
.bower-registry
16+
.bower-tmp
17+
18+
19+
### Node ###
20+
# Logs
21+
logs
22+
*.log
23+
npm-debug.log*
24+
25+
# Runtime data
26+
pids
27+
*.pid
28+
*.seed
29+
30+
# Directory for instrumented libs generated by jscoverage/JSCover
31+
lib-cov
32+
33+
# Coverage directory used by tools like istanbul
34+
coverage
35+
36+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
37+
.grunt
38+
39+
# node-waf configuration
40+
.lock-wscript
41+
42+
# Compiled binary addons (http://nodejs.org/api/addons.html)
43+
build/Release
44+
45+
# Dependency directory
46+
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
47+
node_modules
48+
49+
50+
### grunt ###
51+
# Grunt usually compiles files inside this directory
52+
dist/
53+
54+
# Grunt usually preprocesses files such as coffeescript, compass... inside the .tmp directory
55+
.tmp/
756

8-
# Created by https://www.gitignore.io
957

1058
### Windows ###
1159
# Windows image file caches
@@ -50,9 +98,13 @@ Icon
5098
# Thumbnails
5199
._*
52100

53-
# Files that might appear on external disk
101+
# Files that might appear in the root of a volume
102+
.DocumentRevisions-V100
103+
.fseventsd
54104
.Spotlight-V100
105+
.TemporaryItems
55106
.Trashes
107+
.VolumeIcon.icns
56108

57109
# Directories potentially created on remote AFP share
58110
.AppleDB
@@ -63,7 +115,7 @@ Temporary Items
63115

64116

65117
### Intellij ###
66-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
118+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
67119

68120
*.iml
69121

@@ -97,7 +149,7 @@ Temporary Items
97149
## Plugin-specific files:
98150

99151
# IntelliJ
100-
out/
152+
/out/
101153

102154
# mpeltonen/sbt-idea plugin
103155
.idea_modules/
@@ -109,45 +161,3 @@ atlassian-ide-plugin.xml
109161
com_crashlytics_export_strings.xml
110162
crashlytics.properties
111163
crashlytics-build.properties
112-
113-
114-
### Node ###
115-
# Logs
116-
logs
117-
*.log
118-
119-
# Runtime data
120-
pids
121-
*.pid
122-
*.seed
123-
124-
# Directory for instrumented libs generated by jscoverage/JSCover
125-
lib-cov
126-
127-
# Coverage directory used by tools like istanbul
128-
coverage
129-
130-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
131-
.grunt
132-
133-
# node-waf configuration
134-
.lock-wscript
135-
136-
# Compiled binary addons (http://nodejs.org/api/addons.html)
137-
build/Release
138-
139-
# Dependency directory
140-
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
141-
node_modules
142-
143-
144-
### Bower ###
145-
bower_components
146-
.bower-cache
147-
.bower-registry
148-
.bower-tmp
149-
150-
151-
### Sass ###
152-
.sass-cache
153-
*.css.map

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 2.0.9 (2015-09-17)
4+
5+
- Fix clicking "Media Link..." not working when the media is from SoundCloud.
6+
7+
## 2.0.8 (2015-03-14)
8+
- Update framework.
9+
310
## 2.0.7 (2015-03-01)
411
- Clean up code
512

TODOS.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

assets/css/style.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@
7878
padding: 6px 10px;
7979
border-bottom: 1px solid #1c1f25;
8080
font-size: 18px;
81-
font-weight: 300;
8281
cursor: move;
8382
white-space: nowrap;
8483
}

assets/html/main.tpl.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
<li class="item"
2929
data-ng-repeat="item in items"
3030
data-ng-class="{ 'enabled': isEnabled(item), disabled: !isEnabled(item) }"
31-
data-ng-click="click(item)">{{item.text}}</li>
31+
data-ng-click="click(item)">{{item.text}}
32+
</li>
3233
<li><a class="item item-url" data-href="mediaUrl" data-ng-show="isExpanded">Media Link...</a></li>
3334
</ul>
3435
</div>

assets/html/settings.tpl.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
<ul>
2525
<li class="item"
2626
data-ng-repeat="item in items"
27-
data-ng-click="item.click()">{{item.text}}</li>
27+
data-ng-click="item.click()">{{item.text}}
28+
</li>
2829
</ul>
2930
</div>
3031
</div>

assets/js/.eslintrc

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,23 @@
55
"jquery": true
66
},
77
"rules": {
8-
"max-depth": [1, 4],
9-
"max-len": [1, 120, 4],
10-
"max-params": [1, 3],
11-
"max-statements": [1, 15]
8+
"max-depth": [
9+
1,
10+
4
11+
],
12+
"max-len": [
13+
1,
14+
120,
15+
4
16+
],
17+
"max-params": [
18+
1,
19+
3
20+
],
21+
"max-statements": [
22+
1,
23+
15
24+
]
1225
},
1326
"globals": {
1427
"requirejs": false,

assets/js/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ define([
2323
"app.views"
2424
]);
2525

26-
// Inject DOMs and export APIs
26+
// Inject DOMs and export APIs.
2727
app.run(["DomInjection", "Export", _.noop]);
2828

2929
return app;

0 commit comments

Comments
 (0)