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
| // extract the stories from rally list | |
| //jQuerieze the page first to use it | |
| var stories=""; rows = jQuery('#storycard_tps tr').each(function(ind, e) { | |
| var vals={}; $(e).find('td').each(function(indt,f) { | |
| if (f.className.indexOf('idstring') != -1) | |
| stories += f.innerText + ","; | |
| else if (f.className.indexOf('name0') !=-1) | |
| stories += f.innerText + ","; | |
| else if (f.className.indexOf('owner') !=-1) | |
| stories += f.innerText + "\n"; |
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 () { // this line makes sure this code runs on page load | |
| $('.checkall').click(function () { | |
| $(this).parents('fieldset:eq(0)').find(':checkbox').attr('checked', this.checked); | |
| }); | |
| }); |
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
| _ ____ | |
| (_)/ __ \ | |
| _| | | |_ _ ___ _ __ _ _ | |
| | | | | | | | |/ _ \ '__| | | | | |
| | | |__| | |_| | __/ | | |_| | | |
| | |\___\_\\__,_|\___|_| \__, | | |
| _/ | __/ | | |
| |__/ |___/ | |
| //get latest minified |
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
| /* globals */ | |
| html { | |
| font:62.5%/1 "Droid Sans", "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif; | |
| background: url('background.png'); | |
| background-repeat: no-repeat | |
| } | |
| body { | |
| margin: 0 auto; | |
| } |
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(){ | |
| if (typeof jQuery != 'undefined') | |
| { | |
| console.log('jquery version ' + $.fn.jquery); | |
| return; | |
| } | |
| var s=document.createElement('script'); | |
| s.setAttribute('src','http://code.jquery.com/jquery.min.js'); | |
| document.body.appendChild(s); | |
| void(s); |
NewerOlder