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
// code from | |
// http://stackoverflow.com/questions/15854425/iterate-over-a-javascript-array-without-using-nested-for-loops/15854485#15854485 | |
function printArray(arr) { | |
for (var i = 0; i < arr.length; i++) { | |
if (Array.isArray(arr[i])) { | |
printArray(arr[i]); | |
} else { | |
console.log(arr[i]); | |
} |
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
git rm --cached file-name.txt | |
git rm -r --cached folder-name | |
git commit -m "removed file-name and/or folder-name" | |
git push origin master or branch-name |
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
<!-- using CSS --> | |
<head> | |
<style> | |
.my-disabled-link { | |
cursor: default; | |
pointer-events: none; | |
} | |
</style> | |
</head> | |
<body> |
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
<td ng-bind="(($index + 1) + (paginationOptions.currentPage - 1) * paginationOptions.itemsPerPage)"></td> |
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
/** | |
* @file file-input.component.js | |
* @author Miroslav Georgiev | |
* @version 0.0.1 | |
*/ | |
(function () { | |
'use strict'; | |
/** |
NewerOlder