Skip to content

Commit

Permalink
fixes(tagging) Fixes #33
Browse files Browse the repository at this point in the history
Another version of angular tags removed the offending code.
Unfortunately it seems this library has fractured quite a bit in the open source world.
We'll have more issues in the future with this library.

Also included angular sanitize library to assist with general sanitization problems.
  • Loading branch information
atruskie committed Jan 27, 2014
1 parent b46f379 commit ac019d8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 3 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@
"jasmine-matchers": "https://github.com/JamieMason/Jasmine-Matchers.git",
"objectdiff": "https://github.com/NV/objectDiff.js.git",
"lodash": "~2.3.0",
"angular-tags": "~0.2.10"
"angular-tags": "git://github.com/boneskull/angular-tags.git#master",
"angular-sanitize": "~1.2.x"
},
"dependencies": {},
"resolutions": {
"angular": "1.2.x"
"angular": "1.2.10"
},
"private": true
}
8 changes: 6 additions & 2 deletions build.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,11 @@ module.exports = {
'vendor/lodash/dist/lodash.js',
//'vendor/select2/select2.js',
//'vendor/angular-ui-select2/src/select2.js'
'vendor/angular-tags/dist/angular-tags-0.2.10-tpls.js'

// This library is all split up - we are using the boneskull version atm,
// but we started off using the deciphernic version
'vendor/angular-tags/dist/angular-tags-0.3.1-tpls.js',
'vendor/angular-sanitize/angular-sanitize.js'

],
css: [
Expand All @@ -116,7 +120,7 @@ module.exports = {
//'vendor/select2/select2-bootstrap.css',
//'vendor/select2/select2.css'

'vendor/angular-tags/dist/angular-tags-0.2.10.css'
'vendor/angular-tags/dist/angular-tags-0.3.1.css'
],
assets: [
// jquery-ui is stoopid, special case
Expand Down
1 change: 1 addition & 0 deletions src/app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ var app = angular.module('baw',
[
'ngRoute',
'ngResource',
'ngSanitize',
'ui.utils', /* angular-ui project */
//'ui.select2',
'ui.bootstrap',
Expand Down

0 comments on commit ac019d8

Please sign in to comment.