User:Kwj2772/temp.js

From Wikidata
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
// Mark properties by datatype
(function markProps() {
	var timeProps = ['P1191', 'P1249', 'P1317', 'P1319', 'P1326', 'P1619', 'P1636', 'P569', 'P570', 'P571', 'P574', 'P576', 'P577', 'P580', 'P582', 'P585', 'P606', 'P619', 'P620', 'P621', 'P729', 'P730', 'P746', 'P813', 'P1734', 'P575', 'P578', 'P622']; // updated 2015-05-10; 28 props;
	
	for (var i in timeProps) {
		$('#' + timeProps[i]).addClass('wd-datatype-time');
		$('.wd-datatype-time .wikibase-snakview-value').css('text-decoration', 'underline'); // 잘 되는지 테스트
	}
})();