- Timestamp:
- 05/20/10 11:50:00 (3 years ago)
- Files:
-
- modules/branches/2.8/core/agi-bin/user_login_out.agi (modified) (1 diff)
- modules/branches/2.8/core/core.css (modified) (1 diff)
- modules/branches/2.8/core/page.routing.php (modified) (3 diffs)
- modules/branches/2.8/core/page.trunks.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.8/core/agi-bin/user_login_out.agi
r9507 r9653 551 551 552 552 case 'No Members': 553 debug("Queue $inqueue has no one logged in");553 debug("Queue $inqueue has no one logged in"); 554 554 $inqueue='false'; 555 555 break; modules/branches/2.8/core/core.css
r9240 r9653 8 8 color: inherit; 9 9 } 10 .text-red {11 color: red;12 }13 10 div.dialpatterns { 14 11 max-height: 15em; modules/branches/2.8/core/page.routing.php
r9523 r9653 697 697 focusClass: "text-normal" 698 698 }); 699 $(".dpt-value").toggleVal({700 changedClass: "text-red"701 });702 699 }); 703 700 … … 735 732 focusClass: "text-normal" 736 733 }); 737 if (pattern_pass != '' || pattern_prefix != '' || prepend_digit != '' || match_cid != '') {738 new_insert.find(".dpt-value").toggleVal({739 changedClass: "text-red"740 });741 }742 734 743 735 return idx; … … 817 809 defaultEmptyOK = false; 818 810 819 $(". toggleval").each(function() {811 $(".dpt-title, .dpt-value").each(function() { 820 812 if ($.trim($(this).val()) == '') { 821 813 } else if (!isDialpattern($(this).val())) { modules/branches/2.8/core/page.trunks.php
r9406 r9653 843 843 focusClass: "text-normal" 844 844 }); 845 $(".dpt-value").toggleVal({846 changedClass: "text-red"847 });848 845 }); 849 846 … … 878 875 focusClass: "text-normal" 879 876 }); 880 if (pattern_pass != '' || pattern_prefix != '' || prepend_digit != '') {881 new_insert.find(".dpt-value").toggleVal({882 changedClass: "text-red"883 });884 }885 877 886 878 return idx; … … 898 890 function clearAllPatterns() { 899 891 $(".dpt-value").addClass('dpt-title').removeClass('dpt-value'); 900 $(". toggleval").each(function() {892 $(".dpt-title").each(function() { 901 893 $(this).val(""); 902 894 });
