2019-05-22 01:22:58 +00:00
|
|
|
// Search button function
|
|
|
|
const searchClick = document.getElementById('searchClick')
|
2019-06-01 09:21:51 +00:00
|
|
|
searchClick.addEventListener('click', () => {
|
2019-05-22 01:22:58 +00:00
|
|
|
window.open('https://gitlab.com/search?utf8=%E2%9C%93&search=' +
|
|
|
|
document.getElementById('searchTxt').value +
|
|
|
|
'&group_id=&project_id=8306723&search_code=true&repository_ref=master')
|
2019-06-01 09:21:51 +00:00
|
|
|
}, false);
|
|
|
|
|
|
|
|
const searchClickMob = document.getElementById('searchClickMob')
|
|
|
|
searchClickMob.addEventListener('click', () => {
|
|
|
|
window.open('https://gitlab.com/search?utf8=%E2%9C%93&search=' +
|
|
|
|
document.getElementById('searchTxtMob').value +
|
|
|
|
'&group_id=&project_id=8306723&search_code=true&repository_ref=master')
|
|
|
|
}, false)
|
2018-09-29 09:07:34 +00:00
|
|
|
|
2019-05-22 01:22:58 +00:00
|
|
|
/*
|
|
|
|
* Copy button and Cloudinary functions.
|
|
|
|
* Following functions only execute after
|
|
|
|
* the 'document' is ready or
|
|
|
|
* <script src> is executed.
|
|
|
|
*/
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
// Copy button
|
|
|
|
const copyCode = new ClipboardJS('.copy-button', {
|
|
|
|
target: (trigger) => {
|
|
|
|
return trigger.previousElementSibling
|
|
|
|
}
|
|
|
|
})
|
2019-05-21 01:19:30 +00:00
|
|
|
|
2019-05-22 01:22:58 +00:00
|
|
|
copyCode.on('success', (event) => {
|
|
|
|
event.clearSelection()
|
|
|
|
event.trigger.textContent = 'Copied'
|
|
|
|
window.setTimeout(() => {
|
|
|
|
event.trigger.textContent = 'Copy'
|
|
|
|
}, 2000)
|
2018-10-25 09:03:38 +00:00
|
|
|
})
|
2019-05-21 04:42:30 +00:00
|
|
|
|
2019-05-22 01:22:58 +00:00
|
|
|
copyCode.on('error', (event) => {
|
|
|
|
event.trigger.textContent = 'Press "Ctrl + C" to copy'
|
|
|
|
window.setTimeout(() => {
|
|
|
|
event.trigger.textContent = 'Copy'
|
|
|
|
}, 2000)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Initialize Cloudinary responsive function
|
|
|
|
const cl = cloudinary.Cloudinary.new({ cloud_name: 'curben' })
|
|
|
|
cl.responsive()
|
2019-05-25 14:28:52 +00:00
|
|
|
}, false)
|