Skip to content

Commit 82b3434

Browse files
committed
[37324839] Add div with class of 'player' around h2 in td.audio
1 parent 87b3bd3 commit 82b3434

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

app/scripts/ClipsView.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ define(['jquery', 'lodash', 'Models', 'ViewHelper', 'scplayer'], function($, _,
1414
_.each(models.clips, function(clip, index){
1515
grid.push(
1616
'<img class="portrait" src="' + clip.thumbnail + '" />' +
17-
'<h2><a href="' + clip.soundcloud + '" class="sc-player"></a></h2>'
17+
'<div class="player">' +
18+
'<h2><a href="' + clip.soundcloud + '" class="sc-player"></a></h2>' +
19+
'</div>'
1820
);
1921
});
2022

bin/server.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var express = require('express')
22
var app = express();
3-
var web = 'dist';
3+
var web = process.argv[2] || 'dist';
44

55
function authorize(username, password) {
66
return 'tgm' === username && process.env.AUTHPASS === password;

0 commit comments

Comments
 (0)