This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"image": "/ckeditor-imagebrowser/demo/images/image_big.jpg", | |
"thumb": "/ckeditor-imagebrowser/demo/images/image_small.jpg", | |
"folder": "color" | |
}, | |
{ | |
"image": "/ckeditor-imagebrowser/demo/images/image_bw_big.jpg", | |
"thumb": "/ckeditor-imagebrowser/demo/images/image_bw_small.jpg", | |
"folder": "grayscale" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<textarea id="js-my-textarea"></textarea> | |
<script type="text/javascript"> | |
CKEDITOR.replace('js-my-textarea', { | |
"extraPlugins" : 'imagebrowser', | |
"imageBrowser_listUrl" : "/ckeditor-imagebrowser/demo/images/images_list.json" | |
}); | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"domains": [ | |
{"id": "github", "users": "1+ million", "domain": "github.com"}, | |
{"id": "gmail", "users": "400+ million", "domain": "gmail.com"}, | |
{"id": "googleplus", "users": "50+ million", "domain":"plus.google.com"}, | |
{"id": "facebook", "users": "1+ billion", "domain": "facebook.com"}, | |
{"id": "twitter", "users": "200+ million", "domain": "twitter.com"}, | |
{"id": "youtube", "users": "500+ million", "domain": "youtube.com"}, | |
{"id": "linkedin", "users": "150+ million", "domain": "linkedin.com"} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var dataSet = [ | |
{"id": "github", "keywords": ["github", "social", "version-control"]}, | |
{"id": "gmail", "keywords": ["gmail", "google", "mail"]}, | |
{"id": "facebook", "keywords": ["facebook", "social"]}, | |
{"id": "twitter", "keywords": ["twitter", "social"]} | |
]; | |
var suggestionsLimit = 2; | |
$('#js-textarea-suggestor-example-3').suggestor({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
var dataSet = [ | |
{"id": "github", "keywords": ["github", "social", "version-control"]}, | |
{"id": "gmail", "keywords": ["gmail", "google", "mail"]}, | |
{"id": "facebook", "keywords": ["facebook", "social"]}, | |
{"id": "twitter", "keywords": ["twitter", "social"]} | |
]; | |
var suggestionsLimit = 2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var dataSet = [ | |
{"id": "github"}, | |
{"id": "gmail"}, | |
{"id": "facebook"}, | |
{"id": "twitter"} | |
]; | |
$('#js-textarea-suggestor').suggestor({ | |
"startDelimiter": "#", | |
"suggestionsTemplate": "tags", |