32 lines
912 B
Text
32 lines
912 B
Text
-# Copyright (c) 2010-2011, Diaspora Inc. This file is
|
|
-# licensed under the Affero General Public License version 3 or later. See
|
|
-# the COPYRIGHT file.
|
|
|
|
= javascript_include_tag :jquery
|
|
|
|
:javascript
|
|
$(document).ready(function () {
|
|
var data = $.parseJSON( "#{escape_javascript(@contacts_json)}" ),
|
|
autocompleteInput = $("#contact_autocomplete");
|
|
|
|
autocompleteInput.autoSuggest(data, {
|
|
selectedItemProp: "name",
|
|
searchObjProps: "name",
|
|
asHtmlID: "contact_ids",
|
|
retrieveLimit: 10,
|
|
minChars: 1,
|
|
keyDelay: 0,
|
|
startText: '',
|
|
emptyText: "#{t('no_results')}",
|
|
preFill: [{name : "#{h params[:name]}",
|
|
value : "#{@contact_ids}"}]
|
|
});
|
|
autocompleteInput.focus();
|
|
});
|
|
|
|
.col-md-6#new_conversation_pane
|
|
.container-fluid.row
|
|
%h3
|
|
= t('conversations.index.new_conversation')
|
|
|
|
= render 'conversations/new'
|