Skip to content

Commit

Permalink
Version update
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim committed Sep 21, 2014
1 parent c625cb3 commit 5889fea
Show file tree
Hide file tree
Showing 13 changed files with 70 additions and 82 deletions.
10 changes: 2 additions & 8 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
{
"name": "rangy-official",
"version": "1.3.0-alpha.20140827",
"version": "1.3.0-alpha.20140921",
"homepage": "https://github.com/timdown/rangy",
"authors": [
"Tim Down <[email protected]>"
],
"description": "A cross-browser JavaScript range and selection library.",
"main": [
"rangy-core.js",
"rangy-classapplier.js",
"rangy-highlighter.js",
"rangy-selectionsaverestore.js",
"rangy-serializer.js",
"rangy-textrange.js",
"rangy-core.min.js",
"rangy-classapplier.min.js",
"rangy-highlighter.min.js",
"rangy-selectionsaverestore.min.js",
"rangy-serializer.min.js",
"rangy-textrangemin..js"
"rangy-textrange.min.js"
],
"moduleType": [
"amd",
Expand Down
6 changes: 3 additions & 3 deletions rangy-classapplier.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
* Adds, removes and toggles classes on Ranges and Selections
*
* Part of Rangy, a cross-browser JavaScript range and selection library
* http://code.google.com/p/rangy/
* https://github.com/timdown/rangy
*
* Depends on Rangy core.
*
* Copyright 2014, Tim Down
* Licensed under the MIT license.
* Version: 1.3.0-alpha.20140827
* Build date: 27 August 2014
* Version: 1.3.0-alpha.20140921
* Build date: 21 September 2014
*/
(function(factory, root) {
if (typeof define == "function" && define.amd) {
Expand Down
6 changes: 3 additions & 3 deletions rangy-classapplier.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 10 additions & 7 deletions rangy-core.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/**
* Rangy, a cross-browser JavaScript range and selection library
* http://code.google.com/p/rangy/
* https://github.com/timdown/rangy
*
* Copyright 2014, Tim Down
* Licensed under the MIT license.
* Version: 1.3.0-alpha.20140827
* Build date: 27 August 2014
* Version: 1.3.0-alpha.20140921
* Build date: 21 September 2014
*/

(function(factory, root) {
Expand Down Expand Up @@ -98,7 +98,7 @@
};

var api = {
version: "1.3.0-alpha.20140827",
version: "1.3.0-alpha.20140921",
initialized: false,
isBrowser: isBrowser,
supported: true,
Expand Down Expand Up @@ -167,7 +167,7 @@
var options = {};
extend(options, defaults);
if (optionsParam) {
extend(options, optionsParam, true);
extend(options, optionsParam);
}
return options;
};
Expand Down Expand Up @@ -387,6 +387,9 @@
} catch (ex) {
var errorMessage = "Module '" + name + "' failed to load: " + getErrorDesc(ex);
consoleLog(errorMessage);
if (ex.stack) {
consoleLog(ex.stack);
}
}
}
});
Expand Down Expand Up @@ -3736,7 +3739,7 @@

if (isBrowser) {
// Test whether the document has already been loaded and initialize immediately if so
if (/^(?:complete|interactive)$/.test(document.readyState)) {
if (document.readyState == "complete") {
loadHandler();
} else {
if (isHostMethod(document, "addEventListener")) {
Expand All @@ -3749,4 +3752,4 @@
}

return api;
}, /* build:replaceWithGlobalObject */this/* build:replaceWithGlobalObjectEnd */);
}, this);
10 changes: 5 additions & 5 deletions rangy-core.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions rangy-highlighter.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* Highlighter module for Rangy, a cross-browser JavaScript range and selection library
* http://code.google.com/p/rangy/
* https://github.com/timdown/rangy
*
* Depends on Rangy core, TextRange and CssClassApplier modules.
*
* Copyright 2014, Tim Down
* Licensed under the MIT license.
* Version: 1.3.0-alpha.20140827
* Build date: 27 August 2014
* Version: 1.3.0-alpha.20140921
* Build date: 21 September 2014
*/
(function(factory, root) {
if (typeof define == "function" && define.amd) {
Expand Down
Loading

0 comments on commit 5889fea

Please sign in to comment.