Skip to content

Commit

Permalink
Merge branch '2375-demo-theme-development' of https://github.com/okfn…
Browse files Browse the repository at this point in the history
…/ckan into 2375-demo-theme-development
  • Loading branch information
rossjones committed Sep 5, 2012
2 parents 4711f5f + 82940e3 commit 0bf88cd
Show file tree
Hide file tree
Showing 32 changed files with 1,982 additions and 860 deletions.
6 changes: 3 additions & 3 deletions bin/less
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env node

var fs = require('fs'),
path = require('path'),
var path = require('path'),
nodeWatch = require('nodewatch'),
exec = require('child_process').exec,
watch = path.join(__dirname, '..', 'ckan', 'public', 'base', 'less'),
debug = process.env.ENV !== 'production',
Expand Down Expand Up @@ -39,5 +39,5 @@ if (lastArg === '-p' || lastArg === '--production') {
}

console.log('Watching %s', watch);
fs.watch(watch, compile);
nodeWatch.add(watch).onChange(compile);
compile();
2 changes: 1 addition & 1 deletion ckan/lib/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1253,8 +1253,8 @@ class CreateColorSchemeCommand(CkanCommand):
'@layoutLinkColor',
'@mastheadBackgroundColorStart',
'@mastheadBackgroundColorEnd',
'@btnPrimaryBackgroundHighlight',
'@btnPrimaryBackground',
'@btnPrimaryBackgroundHighlight',
]

# list of predefined colors
Expand Down

0 comments on commit 0bf88cd

Please sign in to comment.