Skip to content

Commit

Permalink
Merge branch 'rangy-official' of https://github.com/FronterAS/textAng…
Browse files Browse the repository at this point in the history
…ular

Conflicts:
	bower.json
  • Loading branch information
SimeonC authored and SimeonC committed Jan 21, 2015
2 parents f0d3baf + c172206 commit ade14e4
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 36 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ module.exports = function (grunt) {
},
my_target: {
files: {
'dist/textAngular-rangy.min.js': ['bower_components/rangy/rangy-core.js', 'bower_components/rangy/rangy-selectionsaverestore.js'],
'dist/textAngular-rangy.min.js': ['bower_components/rangy-official/rangy-core.js', 'bower_components/rangy-official/rangy-selectionsaverestore.js'],
'dist/textAngular.min.js': ['src/textAngularSetup.js','src/textAngular.js'],
'dist/textAngular-sanitize.min.js': ['src/textAngular-sanitize.js']
}
Expand All @@ -125,4 +125,4 @@ module.exports = function (grunt) {
tasks: "concat"
}
});
};
};
12 changes: 9 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
{
"name": "textAngular",
"version": "1.3.0-23",
"main": ["./dist/textAngular.minjs", "./dist/textAngular-sanitize.minjs", "./src/textAngular.css", "./dist/textAngular-rangy.min.js"],
"main": [
"./src/textAngular.js",
"./src/textAngular-sanitize.js",
"./src/textAngularSetup.js",
"./src/textAngular.css",
"../rangy-official/rangy-selectionsaverestore.js"
],
"description": "A radically powerful Text-Editor/Wysiwyg editor for Angular.js",
"keywords": [
"editor",
Expand All @@ -20,9 +26,9 @@
],
"dependencies": {
"angular": "^1.2.x",
"rangy": "^1.2.0",
"bootstrap": "^3.0.x",
"font-awesome": "^4.0.x"
"font-awesome": "^4.0.x",
"rangy-official": "^1.3.0"
},
"devDependencies": {
"angular-mocks": "~1.2.x",
Expand Down
27 changes: 2 additions & 25 deletions dist/textAngular-rangy.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions karma-jqlite.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ module.exports = function (config) {
],

files: [
'bower_components/rangy/rangy-core.js',
'bower_components/rangy/rangy-selectionsaverestore.js',
'bower_components/rangy-official/rangy-core.js',
'bower_components/rangy-official/rangy-selectionsaverestore.js',
'bower_components/angular/angular.min.js',
'bower_components/angular-mocks/angular-mocks.js',
'src/textAngular-sanitize.js',
Expand Down Expand Up @@ -84,4 +84,4 @@ module.exports = function (config) {
// if true, it capture browsers, run tests and exit
singleRun: true
});
};
};
6 changes: 3 additions & 3 deletions karma-jquery.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ module.exports = function (config) {

files: [
'bower_components/jquery/jquery.min.js',
'bower_components/rangy/rangy-core.js',
'bower_components/rangy/rangy-selectionsaverestore.js',
'bower_components/rangy-official/rangy-core.js',
'bower_components/rangy-official/rangy-selectionsaverestore.js',
'bower_components/angular/angular.min.js',
'bower_components/angular-mocks/angular-mocks.js',
'src/textAngular-sanitize.js',
Expand Down Expand Up @@ -84,4 +84,4 @@ module.exports = function (config) {
// if true, it capture browsers, run tests and exit
singleRun: true
});
};
};

0 comments on commit ade14e4

Please sign in to comment.