Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
#### Drops support for Python 3.5
Opal now supports Python 3.6 - Python 3.8.

#### Adds the ng-sanitize
Opal now ships with the filter `$sanitize` that escapes dangerous tokens in html.


### 0.20.0 (Major Release)

Expand Down
2 changes: 1 addition & 1 deletion opal/core/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class OpalApplication(object):
"js/lib/bower_components/angular-route/angular-route.js",
"js/lib/bower_components/angular-resource/angular-resource.js",
"js/lib/bower_components/angular-cookies/angular-cookies.js",

"js/lib/angular-sanitize.js",
"js/lib/angular-ui-utils-0.1.0/ui-utils.js",
"js/lib/ui-bootstrap-tpls-0.14.3.js",

Expand Down
Loading