Posts

Showing posts from March 21, 2019

Jasienica Górna

Image
Village in Opole, Poland Jasienica Górna Village Jasienica Górna Coordinates: 50°23′57″N 17°7′44″E  /  50.39917°N 17.12889°E  / 50.39917; 17.12889 Country Poland Voivodeship Opole County Nysa Gmina Otmuchów Population (approx.) 400 Jasienica Górna [jaɕeˈnit͡sa ˈɡurna] (German: Ober Hermsdorf ) is a village in the administrative district of Gmina Otmuchów, within Nysa County, Opole Voivodeship, in south-western Poland, close to the Czech border. [1] It lies approximately 9 kilometres (6 mi) south-west of Otmuchów, 17 km (11 mi) south-west of Nysa, and 65 km (40 mi) south-west of the regional capital Opole. Before 1945 the area was part of Germany (see Territorial changes of Poland after World War II ). The village has an approximate population of 400. References ^ "Central Statistical Office (GUS) - TERYT (National Register of Territorial Land Apportionment Journal)" (in Polish). 2008-06-01. .mw-parser-output cite.

Creating a looping array inside Zapier Script editor

Image
0 Hello need help adding this javascript to my private app in the Zapier developer online portal. Ideally this will be done in the script editor arrayName = ["element0", "element1", "element2", "element4"]; for (var x =0; i < arrayName.length, x++) { //Insert the code for your action console.log(arrayName[x]); } javascript zapier share | improve this question asked Nov 16 '18 at 2:05 Luke Luke 6 1

In Vue&Vuex, how can I activate onclick method in child component?

Image
1 I'm trying to edit JS library that already existed but it consisted of Vue. So I studied Vue a little. The problem is that I made child component called 'Analysis' and want to anchor function. I made tag and bind 'moveAnchor' method to onclick, also declared 'moveAnchor' on methods part. but it didn't work. How can I fix? I'm sorry for being inexperienced.. :( it is script.js of analysis. import { mapActions, mapState } from 'vuex'; export default { name: 'Analysis', computed: { checkName : function(){ var flag = this.$store.state.analysis.name; if(flag.indexOf("/PCs/") != -1){ console.log(flag); } } }, methods: { moveAnchor: function (id){ var div = document.getElementById(id).scrol