Skip to content

Commit

Permalink
Fix for issue #230: renamed dependency in each module to "rangy-core".
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim committed Aug 4, 2014
1 parent fa08d60 commit 566cfc9
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion roadmap.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
- [X] Added select() method to range
- [X] Rename CSS class applier module to "class applier module"
- [?] Add handling for img and similar elements in class applier module
- [ ] AMD support. How does this work with Rangy's modules?
- [X] AMD support
- [X] Add getNativeTextRange() to selection for IE 11
- [ ] Add withinRange and withinNode options to move(), moveStart() and moveEnd() methods

Expand Down
2 changes: 1 addition & 1 deletion src/js/modules/rangy-classapplier.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Version: %%build:version%%
* Build date: %%build:date%%
*/
/* build:modularizeWithDependencies(["rangy"]) */
/* build:modularizeWithDependencies(["rangy-core"]) */
rangy.createModule("ClassApplier", ["WrappedSelection"], function(api, module) {
var dom = api.dom;
var DomPosition = dom.DomPosition;
Expand Down
2 changes: 1 addition & 1 deletion src/js/modules/rangy-highlighter.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Version: %%build:version%%
* Build date: %%build:date%%
*/
/* build:modularizeWithDependencies(["rangy"]) */
/* build:modularizeWithDependencies(["rangy-core"]) */
rangy.createModule("Highlighter", ["ClassApplier"], function(api, module) {
var log = log4javascript.getLogger("rangy.Highlighter");
var dom = api.dom;
Expand Down
2 changes: 1 addition & 1 deletion src/js/modules/rangy-selectionsaverestore.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Version: %%build:version%%
* Build date: %%build:date%%
*/
/* build:modularizeWithDependencies(["rangy"]) */
/* build:modularizeWithDependencies(["rangy-core"]) */
rangy.createModule("SaveRestore", ["WrappedRange"], function(api, module) {
var dom = api.dom;

Expand Down
2 changes: 1 addition & 1 deletion src/js/modules/rangy-serializer.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Version: %%build:version%%
* Build date: %%build:date%%
*/
/* build:modularizeWithDependencies(["rangy"]) */
/* build:modularizeWithDependencies(["rangy-core"]) */
rangy.createModule("Serializer", ["WrappedSelection"], function(api, module) {
var UNDEF = "undefined";

Expand Down
2 changes: 1 addition & 1 deletion src/js/modules/rangy-textrange.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
* Problem is whether Rangy should ever acknowledge the space and if so, when. Another problem is whether this can be
* feature-tested
*/
/* build:modularizeWithDependencies(["rangy"]) */
/* build:modularizeWithDependencies(["rangy-core"]) */
rangy.createModule("TextRange", ["WrappedSelection"], function(api, module) {
var UNDEF = "undefined";
var CHARACTER = "character", WORD = "word";
Expand Down
2 changes: 1 addition & 1 deletion src/js/modules/rangy-util.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Version: %%build:version%%
* Build date: %%build:date%%
*/
/* build:modularizeWithDependencies(["rangy"]) */
/* build:modularizeWithDependencies(["rangy-core"]) */
rangy.createModule("Util", ["WrappedSelection"], function(api, module) {
var rangeProto = api.rangePrototype;
var selProto = api.selectionPrototype;
Expand Down

0 comments on commit 566cfc9

Please sign in to comment.