carte-server 0.0.16 → 0.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/carte.coffee +1 -1
- data/lib/carte/client/views/list.cjsx +1 -1
- data/package.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d30756fcc57b54e7d93508984cc7a96762b92301
|
|
4
|
+
data.tar.gz: cf07a61a36ca45dd1592b335dbaa62e00b148307
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 91c259b1bf218861934a79673ccc3667f5cf2a2eebf114980d59166695599ef7b2162a5d92b0b770dd122be1f25ad27e94a6e53a01c280c6570d6703ed7e651a
|
|
7
|
+
data.tar.gz: 2738a6455017fc4580b7e2724d76d71bb86993d0d83afffb1e44aa1647bc55eb46f4356bf93b0ce74708575d6e3645afd124627358678ead5d3afbea0896cde0
|
data/lib/carte.coffee
CHANGED
|
@@ -25,7 +25,7 @@ module.exports = class Carte
|
|
|
25
25
|
|
|
26
26
|
gulp.task 'build:html', =>
|
|
27
27
|
_config = require('./carte/client/config')
|
|
28
|
-
gulp.src('
|
|
28
|
+
gulp.src(__dirname + '/carte/client.jade')
|
|
29
29
|
.pipe jade(locals: {config: _config}, pretty: true)
|
|
30
30
|
.pipe rename(_config.html_path)
|
|
31
31
|
.pipe gulp.dest(_config.root_dir)
|
|
@@ -53,7 +53,7 @@ module.exports = React.createClass
|
|
|
53
53
|
when 'random'
|
|
54
54
|
<li><a onClick={helpers.reload} href={"#/?" + @randomParam()} style={{padding:'6px 12px',fontWeight: if @props.cards.query.order == 'random' then 'bold' else 'normal'}}>Random</a></li>
|
|
55
55
|
}
|
|
56
|
-
<li><a href={config.root_path + config.api_path + "/
|
|
56
|
+
<li><a href={config.root_path + config.api_path + "/cards.xml?" + @queryParam({}, [])} style={{padding:'6px 12px'}}><i className="fa fa-rss" /></a></li>
|
|
57
57
|
</ul>
|
|
58
58
|
</div>
|
|
59
59
|
<div className="col-sm-6" style={{padding:"0px"}}>
|
data/package.json
CHANGED