a2bb7a1341fe985b44d7a4d1aafce2b40186c80d
[yaffs-website] / web / modules / contrib / linkit / js / attribute / title.js
1 /**
2  * @file
3  * Title attribute functions.
4  */
5
6 (function ($, Drupal, document) {
7
8   'use strict';
9
10   var fieldName = '[name="attributes[title]"]';
11
12   /**
13    * Automatically populate the title attribute.
14    */
15   $(document).bind('linkit.autocomplete.select', function (triggerEvent, event, ui) {
16     if (ui.item.hasOwnProperty('title')) {
17       $('form.linkit-editor-dialog-form').find(fieldName).val(ui.item.title);
18     }
19   });
20
21 })(jQuery, Drupal, document);