Sha256: 2fe4b29ddf395114d92dd3b573dc0865e5c99b2aa416eb7a9751d2774efb0075

Contents?: true

Size: 496 Bytes

Versions: 2

Compression:

Stored size: 496 Bytes

Contents

<html>

<head>
<title>Modal 2</title>
    
<script>
  function delay_action(other_function) {
    setTimeout(other_function, 3000);
  }

  function close_window() {
    self.close()
  }
</script>

</head>

<body>

<h2>Modal 2</h2>

<h3>Close buttons</h3>
<input id=close_window2 type="button" onclick="close_window()" value="Close window"/>
<input id=delayed_close2 type=button onclick="delay_action('close_window()')" value="Close window with delay" />

</body>
</html>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
meeane-page-object-0.1.10 features/html/modal_2.html
meeane-page-object-0.1.8 features/html/modal_2.html