Changeset 1515847
- Timestamp:
- 10/16/2016 11:00:54 AM (9 years ago)
- Location:
- fb-group-feed
- Files:
-
- 2 edited
-
tags/1.5/js/script.js (modified) (1 diff)
-
trunk/js/script.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fb-group-feed/tags/1.5/js/script.js
r1229771 r1515847 34 34 }); 35 35 function showFBhelp(id){ 36 if(jQuery('#contextual-help-wrap').height() > 0){ 37 jQuery('#contextual-help-wrap').hide(); 38 } 36 39 jQuery('#contextual-help-link').trigger('click'); 37 40 //jQuery('#contextual-help-link-wrap a').trigger('click'); -
fb-group-feed/trunk/js/script.js
r1222087 r1515847 18 18 19 19 jQuery(document).ready(function() { 20 jQuery('#limit').spinner({step: 1, min: 1, max: 50}); 21 jQuery('#bxwidth').spinner({step: 5, min: 50, max: 500}); 22 jQuery('#bxheight').spinner({step: 5, min: 100, max: 1000 }); 20 var opts = { 21 'limit': {disabled: false, step: 1, min: 1, max: 50, numberFormat: "n"}, 22 'bxwidth': {disabled: false, step: 5, min: 50, max: 500, numberFormat: "n"}, 23 'bxheight': {disabled: false, step: 5, min: 100, max: 1000, numberFormat: "n"} 24 } 25 for (var n in opts){ 26 jQuery("#"+n).spinner(opts[n]); 27 } 23 28 24 29 //help button click handler... … … 29 34 }); 30 35 function showFBhelp(id){ 36 if(jQuery('#contextual-help-wrap').height() > 0){ 37 jQuery('#contextual-help-wrap').hide(); 38 } 39 jQuery('#contextual-help-link').trigger('click'); 40 //jQuery('#contextual-help-link-wrap a').trigger('click'); 41 31 42 jQuery('#contextual-help-columns li').removeClass('active'); 32 43 jQuery('#tab-panel-fb_groupfeed-help').removeClass('active'); … … 34 45 jQuery('#tab-panel-fb_groupfeed-acc').removeClass('active'); 35 46 36 jQuery('#contextual-help-link').trigger('click');37 47 if(id=='app'){ 38 48 jQuery('#tab-link-fb_groupfeed-app').addClass('active');
Note: See TracChangeset
for help on using the changeset viewer.