Sha256: 39fff14306e375704e33b184ad2347f50ec2efb0913f1e8559c9b403d847f3e8

Contents?: true

Size: 334 Bytes

Versions: 5

Compression:

Stored size: 334 Bytes

Contents

<% unless notice.nil? and alert.nil? %>

  <script type="text/javascript">
	$(function() {
		setTimeout(deleteSystemNotice, 3000);
	});

	function deleteSystemNotice() {
		$('#system_notice').fadeOut('slow');
	}
  </script>

  <div id="system_notice">
    <%= notice || alert %>
    <a id="system_notice_close"></a>
  </div>
<% end %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
mdd-1.1.0 app/views/template/mdwa/_notice.html.erb
mdd-1.0.3 app/views/template/mdwa/_notice.html.erb
mdd-1.0.2 app/views/template/mdwa/_notice.html.erb
mdd-1.0.1 app/views/template/mdwa/_notice.html.erb
mdd-1.0 app/views/template/mdwa/_notice.html.erb