File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
chrome/skin/classic/shared Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
/* See license.txt for terms of usage */
2
2
3
- .kind-jQueryObject .cm-variable {
3
+ .kind-jQuery .cm-variable {
4
4
color : # 4B0082 ;
5
5
}
6
6
7
- .kind-jQueryObject . jQueryCache {
7
+ .kind-jQuery . cache {
8
8
font-size : 11px ;
9
9
color : # 4B0082 ;
10
10
margin-left : 2px ;
11
+ cursor : pointer;
11
12
}
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ var FireQueryActor = ActorClass(
133
133
}
134
134
135
135
let preview = grip . preview = {
136
- kind : "jQueryObject " ,
136
+ kind : "jQuery " ,
137
137
} ;
138
138
139
139
let raw = actor . obj . unsafeDereference ( ) ;
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ const XHTML_NS = "http://www.w3.org/1999/xhtml";
23
23
24
24
*/
25
25
var JQueryRenderer = {
26
- byKind : "jQueryObject " ,
26
+ byKind : "jQuery " ,
27
27
28
28
render : function ( ) {
29
29
let { preview } = this . objectActor ;
@@ -99,7 +99,7 @@ var JQueryRenderer = {
99
99
}
100
100
101
101
let cache = this . document . createElementNS ( XHTML_NS , "span" ) ;
102
- cache . className = "jQueryCache "
102
+ cache . className = "cache "
103
103
cache . innerHTML = "✉"
104
104
parentNode . appendChild ( cache ) ;
105
105
}
You can’t perform that action at this time.
0 commit comments