File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 7
7
"clean" : " rimraf ./plugin/**/*.d.ts ./plugin/**/*.js ./plugin/**/*.js.map plugin/node_modules plugin/package-lock.json" ,
8
8
"build" : " cp README.md plugin/ && rm -f .tsbuildinfo && npm run tsc" ,
9
9
"setup" : " npm i && ts-patch install" ,
10
- "demo.ios" : " npm i && npm run tsc && cd demo && tns run ios" ,
11
- "demo.android" : " npm i && npm run tsc && cd demo && tns run android" ,
10
+ "demo.ios" : " npm i && npm run tsc && cd demo && ns run ios" ,
11
+ "demo.android" : " npm i && npm run tsc && cd demo && ns run android" ,
12
12
"clean.demo" : " rimraf demo/hooks demo/node_modules demo/platforms" ,
13
- "demo.ios.vue" : " npm i && npm run tsc && cd demo_vue && tns run ios" ,
14
- "demo.android.vue" : " npm i && npm run tsc && cd demo_vue && tns run android" ,
13
+ "demo.ios.vue" : " npm i && npm run tsc && cd demo_vue && ns run ios" ,
14
+ "demo.android.vue" : " npm i && npm run tsc && cd demo_vue && ns run android" ,
15
15
"clean.demo.vue" : " rimraf demo_vue/hooks demo_vue/node_modules demo_vue/platforms" ,
16
16
"plugin.watch.tsc" : " npm run tsc -- -w" ,
17
17
"plugin.watch" : " npm run plugin.watch.tsc" ,
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ export class HorizontalBarChartRenderer extends BarChartRenderer {
161
161
break ;
162
162
}
163
163
164
- if ( ! this . mViewPortHandler . isInBoundsX ( buffer . buffer [ isInverted ? j : ( j + 2 ) ] ) ) {
164
+ if ( ! this . mViewPortHandler . isInBoundsX ( buffer . buffer [ isInverted ? ( j + 2 ) : j ] ) ) {
165
165
continue ;
166
166
}
167
167
@@ -221,7 +221,7 @@ export class HorizontalBarChartRenderer extends BarChartRenderer {
221
221
break ;
222
222
}
223
223
224
- if ( ! this . mViewPortHandler . isInBoundsX ( buffer . buffer [ isInverted ? bufferIndex : ( bufferIndex + 2 ) ] ) ) {
224
+ if ( ! this . mViewPortHandler . isInBoundsX ( buffer . buffer [ isInverted ? ( bufferIndex + 2 ) : bufferIndex ] ) ) {
225
225
continue ;
226
226
}
227
227
You can’t perform that action at this time.
0 commit comments