mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2026-05-04 00:30:53 +00:00
tweaks
This commit is contained in:
@@ -249,7 +249,8 @@ class html_webdriver(Fetcher):
|
||||
self.headers = {}
|
||||
|
||||
def screenshot(self):
|
||||
return self.driver.get_screenshot_as_png()
|
||||
screenshot = self.driver.get_screenshot_as_png()
|
||||
return screenshot
|
||||
|
||||
# Does the connection to the webdriver work? run a test connection.
|
||||
def is_ready(self):
|
||||
|
||||
@@ -14,6 +14,8 @@ var y_scale;
|
||||
var selector_image = document.getElementById("selector-background");
|
||||
var selector_image_rect;
|
||||
var vh;
|
||||
var selector_data;
|
||||
|
||||
|
||||
function fetch_data() {
|
||||
// Image is ready
|
||||
@@ -24,7 +26,8 @@ function fetch_data() {
|
||||
context: document.body
|
||||
}).done(function (data) {
|
||||
$('.fetching-update-notice').html("Rendering..");
|
||||
reflow_selector(data);
|
||||
selector_data = data;
|
||||
reflow_selector();
|
||||
$('.fetching-update-notice').fadeOut();
|
||||
});
|
||||
};
|
||||
@@ -42,6 +45,7 @@ $(window).resize(function() {
|
||||
|
||||
$('#visualselector-tab').bind('click', function (e) {
|
||||
set_scale();
|
||||
reflow_selector();
|
||||
});
|
||||
|
||||
|
||||
@@ -62,7 +66,7 @@ function set_scale() {
|
||||
|
||||
}
|
||||
|
||||
function reflow_selector(selector_data) {
|
||||
function reflow_selector() {
|
||||
|
||||
var selector_currnt_xpath_text=$("#selector-current-xpath span");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user