Conflicts:
	theme/assets/app.js
This commit is contained in:
Samy Pessé
2014-04-05 13:54:00 -07:00
3 changed files with 7 additions and 4 deletions
+2 -2
View File
@@ -77,8 +77,8 @@ Generator.prototype.convertFile = function(content, _input) {
Generator.prototype.finish = function() {
var that = this;
return fs.symlink(
'README.html',
return fs.copy(
path.join(that.options.output, 'README.html'),
path.join(that.options.output, 'index.html')
)
.then(function() {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "gitbook",
"version": "0.1.0",
"version": "0.1.1",
"description": "Library and cmd utility to generate GitBooks",
"main": "lib/index.js",
"dependencies": {
+4 -1
View File
@@ -9,7 +9,10 @@ define([
});
var isAvailable = function() {
return (typeof mixpanel !== "undefined");
return (
typeof mixpanel !== "undefined" &&
typeof mixpanel.track === "function"
);
};
var track = function(e, data) {