Skip to content
This repository was archived by the owner on Feb 9, 2020. It is now read-only.

Commit a2c6795

Browse files
committed
v0.8.2
Includes updates to angular-hint
1 parent f1f31ad commit a2c6795

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

dist/hint.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1632,7 +1632,7 @@ var getFunctionNames = function(str) {
16321632
if (typeof str !== 'string') {
16331633
return [];
16341634
}
1635-
var results = str.replace(/\s+/g, '').split(/[\+\-\/\|\<\>\^=&!%~]/g).map(function(x) {
1635+
var results = str.replace(/\s+/g, '').split(/[\+\-\/\|\<\>\^=&!%~;]/g).map(function(x) {
16361636
if (isNaN(+x)) {
16371637
if (x.match(/\w+\(.*\)$/)){
16381638
return x.substr(0, x.indexOf('('));
@@ -1902,7 +1902,7 @@ function decorateRootScope($delegate, $parse) {
19021902

19031903
var _destroy = scopePrototype.$destroy;
19041904
scopePrototype.$destroy = function () {
1905-
var id = this.id;
1905+
var id = this.$id;
19061906

19071907
hint.emit('scope:destroy', { id: id });
19081908

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "AngularJS Batarang",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "Extends the Developer Tools, adding tools for debugging and profiling AngularJS applications.",
55
"devtools_page": "devtoolsBackground.html",
66
"manifest_version": 2,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angularjs-batarang",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "chrome extension for inspecting angular apps",
55
"main": "hint.js",
66
"devDependencies": {

0 commit comments

Comments
 (0)