Skip to content

Commit

Permalink
changed theme
Browse files Browse the repository at this point in the history
  • Loading branch information
edsilv committed Feb 8, 2016
1 parent 4639307 commit 3158673
Show file tree
Hide file tree
Showing 19 changed files with 1,015 additions and 668 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[submodule "examples"]
path = examples
url = https://github.com/UniversalViewer/examples.git
url = https://github.com/britishlibrary/examples.git
[submodule "tests"]
path = tests
url = https://github.com/UniversalViewer/tests.git
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"lodash-compat": "~3.10.0",
"r.js": "~2.1.18",
"utils": "edsilv/utils",
"uv-cy-GB-theme": "universalviewer/uv-cy-GB-theme",
"uv-en-GB-theme": "universalviewer/uv-en-GB-theme",
"uv-cy-GB-theme": "britishlibrary/uv-cy-GB-theme",
"uv-en-GB-theme": "britishlibrary/uv-en-GB-theme",
"exjs": "~0.3.0"
}
}
17 changes: 10 additions & 7 deletions dist/uv-1.6.17/lib/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -8168,6 +8168,7 @@ String.prototype.utf8_to_b64 = function () {
};

!function(e){if("object"==typeof exports)module.exports=e();else if("function"==typeof define&&define.amd)define('manifesto',e);else{var f;"undefined"!=typeof window?f=window:"undefined"!=typeof global?f=global:"undefined"!=typeof self&&(f=self),f.manifesto=e()}}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){
(function (global){
var Manifesto;
(function (Manifesto) {
var StringValue = (function () {
Expand Down Expand Up @@ -9023,6 +9024,7 @@ var Manifesto;
var tree = manifest.getTree();
tree.label = manifest.getTitle() || 'manifest ' + (i + 1);
tree.navDate = manifest.getNavDate();
tree.data.id = manifest.id;
tree.data.type = Manifesto.TreeNodeType.MANIFEST.toString();
parentCollection.treeRoot.addNode(tree);
}
Expand All @@ -9035,6 +9037,7 @@ var Manifesto;
var tree = collection.getTree();
tree.label = collection.getTitle() || 'collection ' + (i + 1);
tree.navDate = collection.getNavDate();
tree.data.id = collection.id;
tree.data.type = Manifesto.TreeNodeType.COLLECTION.toString();
parentCollection.treeRoot.addNode(tree);
this._parseCollections(collection);
Expand Down Expand Up @@ -9444,10 +9447,8 @@ var Manifesto;
var TreeNode = (function () {
function TreeNode(label, data) {
this.label = label;
this.data = data;
this.data = data || {};
this.nodes = [];
if (!data)
this.data = {};
}
TreeNode.prototype.addNode = function (node) {
this.nodes.push(node);
Expand All @@ -9474,9 +9475,9 @@ var Manifesto;
TreeNodeType.prototype.range = function () {
return new TreeNodeType(TreeNodeType.RANGE.toString());
};
TreeNodeType.COLLECTION = new TreeNodeType("collection");
TreeNodeType.MANIFEST = new TreeNodeType("manifest");
TreeNodeType.RANGE = new TreeNodeType("range");
TreeNodeType.COLLECTION = new TreeNodeType("sc:collection");
TreeNodeType.MANIFEST = new TreeNodeType("sc:manifest");
TreeNodeType.RANGE = new TreeNodeType("sc:range");
return TreeNodeType;
})(Manifesto.StringValue);
Manifesto.TreeNodeType = TreeNodeType;
Expand Down Expand Up @@ -9752,7 +9753,7 @@ var Manifesto;
})();
Manifesto.Utils = Utils;
})(Manifesto || (Manifesto = {}));
module.exports = {
global.manifesto = module.exports = {
AnnotationMotivation: new Manifesto.AnnotationMotivation(),
CanvasType: new Manifesto.CanvasType(),
ElementType: new Manifesto.ElementType(),
Expand Down Expand Up @@ -9826,6 +9827,7 @@ module.exports = {
/// <reference path="./Serialisation.ts" />
/// <reference path="./Service.ts" />
/// <reference path="./Thumb.ts" />
/// <reference path="./ITreeNode.ts" />
/// <reference path="./TreeNode.ts" />
/// <reference path="./TreeNodeType.ts" />
/// <reference path="./Utils.ts" />
Expand Down Expand Up @@ -9885,6 +9887,7 @@ var Manifesto;
Manifesto.Resource = Resource;
})(Manifesto || (Manifesto = {}));

}).call(this,typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"http":6,"lodash.assign":27,"lodash.endswith":37,"lodash.isarray":39,"lodash.isstring":40,"lodash.last":41,"lodash.map":42,"url":24}],2:[function(_dereq_,module,exports){
/*!
* The buffer module from node.js, for the browser.
Expand Down
Loading

0 comments on commit 3158673

Please sign in to comment.