Sha256: 90f002e4b2a2633cae1b9ff78eb7131828ada0731dab536c1bd0f5361cfb2434

Contents?: true

Size: 691 Bytes

Versions: 33

Compression:

Stored size: 691 Bytes

Contents

/*
 category.js: javascript for category.rb plugin of tDiary

 Copyright (C) 2011 by TADA Tadashi <t@tdtds.jp>
 You can redistribute it and/or modify it under GPL2 or any later version.
 */

$(function(){
	// insert clicked category item into textarea of update form
	function insertCategoryItem(item) {
		$('#body').insertAtCaret( '[' + item.text() + ']' );
	}

	$('.category-item')
	.hover(function(){
		$(this).css('cursor', 'pointer');
	}, function(){
		$(this).css('cursor', 'default');
	})
	.click(function(){
		insertCategoryItem($(this));
	});

	$('#category-candidate').change(function(){
		$('option:selected', this).each(function(){
			insertCategoryItem($(this));
		});
	});
});

Version data entries

33 entries across 25 versions & 1 rubygems

Version Path
tdiary-5.1.2 vendor/bundle/ruby/2.6.0/gems/tdiary-5.0.14/js/category.js
tdiary-5.1.1 vendor/bundle/ruby/2.6.0/gems/tdiary-5.0.14/js/category.js
tdiary-5.1.0 js/category.js
tdiary-5.1.0 public/assets/category.js
tdiary-5.0.14 js/category.js
tdiary-5.0.13 js/category.js
tdiary-5.0.12.1 js/category.js
tdiary-5.0.11 js/category.js
tdiary-5.0.10 js/category.js
tdiary-5.0.9 js/category.js
tdiary-5.0.8 public/assets/category.js
tdiary-5.0.8 vendor/bundle/gems/tdiary-5.0.7/js/category.js
tdiary-5.0.8 js/category.js
tdiary-5.0.7 js/category.js
tdiary-5.0.6 js/category.js
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.3/js/category.js
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/tdiary-5.0.3/js/category.js
tdiary-5.0.5 js/category.js
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/js/category.js
tdiary-5.0.4 js/category.js