Plugin Directory

Changeset 924806


Ignore:
Timestamp:
06/01/2014 06:11:03 PM (12 years ago)
Author:
rockaja
Message:

release version 2.0.4

Location:
wp-announce
Files:
9 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-announce/tags/2.0.3/readme.txt

    r924801 r924806  
    55Requires at least: 3.0.1
    66Tested up to: 3.9.1
    7 Stable tag: 2.0.4
     7Stable tag: 2.0.3
    88
    99Clean  announcement plugin  that reveals a neat popup when users visit your site. You can set who sees the announcement, how soon and when to display it..
     
    4040* intermittent bug fix - javascript conflict
    4141* Persistent cookie fix
    42 = 2.0.4 =
    43 * conflict fix with custom themes
  • wp-announce/tags/2.0.3/src/wp-announce.php

    r924801 r924806  
    164164 <script>
    165165    $ = jQuery; 
    166       $(document).bind('ready',function(){
     166    $(document).ready(function(){
    167167      var hh = $('#postimagediv .inside ').html();
    168168      var addMsg = 'Choosing a featured image will create a background for your announcement';
     
    192192
    193193    var $ = jQuery;
    194     $(document).bind('ready',function(){     
     194    $(document).ready(function(){     
    195195
    196196    });
     
    238238   <script>
    239239    $ = jQuery; 
    240       $(document).bind('ready',function(){
     240    $(document).ready(function(){
    241241       $('#wpa_default_style').click( function () {
    242242        var defaultOption_header = '<?php echo $wpa_option_header ?>';
     
    387387
    388388  <script>
    389     $(":range").rangeinput(); 
    390         $(document).bind('ready',function(){
     389    $(":range").rangeinput();
     390      $(document).ready(function(){ 
    391391      // $('#preview-action a').attr('style', 'display:none');
    392392       $('#wpseo_meta').attr('style', 'display:none'); //hide seo     
     
    508508           var $ = jQuery;
    509509           
    510             $(document).bind('ready',function(){
     510           $(document).ready(function(){
    511511           
    512512             if( document.cookie.indexOf('wpa_$wpa_post_id') == -1 ){           
     
    530530
    531531           var $ = jQuery;
    532            $(document).bind('ready',function(){
     532           $(document).ready(function(){
    533533           
    534534           if( document.cookie.indexOf('wpa_$wpa_post_id') == -1 ){ 
     
    554554           var $ = jQuery;
    555555           //alert('cool3');
    556             $(document).bind('ready',function(){
     556           $(document).ready(function(){
    557557           if( document.cookie.indexOf('wpa_$wpa_post_id') == -1 ){       
    558558                setTimeout(wpann_pop_announcement, $wpa_delay * 1000 );
  • wp-announce/tags/2.0.3/wp-announce.php

    r924801 r924806  
    55Description: Clean and neat announcement popup plugin for users to view when they visit your site. You can set who sees the announcement and when to display it.
    66Author: Sprint Experts Team
    7 Version: 2.0.4
     7Version: 2.0.3
    88Author URI: https://www.sprintexperts.com
    99License: GPLv2 or later
  • wp-announce/tags/2.0.4/readme.txt

    r924393 r924806  
    55Requires at least: 3.0.1
    66Tested up to: 3.9.1
    7 Stable tag: 2.0.3
     7Stable tag: 2.0.4
    88
    99Clean  announcement plugin  that reveals a neat popup when users visit your site. You can set who sees the announcement and when to display it . You can customise the look and feel among other things.
     
    4040* intermittent bug fix - javascript conflict
    4141* Persistent cookie fix
     42= 2.0.4 =
     43* conflict fix with custom themes
  • wp-announce/tags/2.0.4/src/wp-announce.php

    r924393 r924806  
    33if ( !function_exists( 'add_action' ) )
    44   {
    5         header( 'HTTP/0.9 403 Forbidden' );
    6         header( 'HTTP/1.0 403 Forbidden' );
    7         header( 'HTTP/1.1 403 Forbidden' );
    8         header( 'Status: 403 Forbidden' );
    9         header( 'Connection: Close' );
    10         exit();
    11     }
     5    header( 'HTTP/0.9 403 Forbidden' );
     6    header( 'HTTP/1.0 403 Forbidden' );
     7    header( 'HTTP/1.1 403 Forbidden' );
     8    header( 'Status: 403 Forbidden' );
     9    header( 'Connection: Close' );
     10    exit();
     11  }
    1212
    1313define( 'PLUGIN_NAME', 'WP Announce');
     
    8989function wpa_admin(){
    9090      //add_submenu_page('edit.php?post_type=announce', 'Help and FAQ', 'Help and FAQ', 'edit_posts', basename(__FILE__), 'wpa_option_page');
    91        //add_options_page('WP Announce Options', 'WP Announce','announce', __FILE__, 'wpa_options_page');
    92     }   
     91     //add_options_page('WP Announce Options', 'WP Announce','announce', __FILE__, 'wpa_options_page');
     92    } 
    9393//add_action('admin_menu', 'wpa_admin', 10, 1);
    9494
     
    164164 <script>
    165165    $ = jQuery; 
    166     $(document).ready(function(){
     166      $(document).bind('ready',function(){
    167167      var hh = $('#postimagediv .inside ').html();
    168168      var addMsg = 'Choosing a featured image will create a background for your announcement';
     
    192192
    193193    var $ = jQuery;
    194     $(document).ready(function(){     
     194    $(document).bind('ready',function(){     
    195195
    196196    });
     
    238238   <script>
    239239    $ = jQuery; 
    240     $(document).ready(function(){
     240      $(document).bind('ready',function(){
    241241       $('#wpa_default_style').click( function () {
    242242        var defaultOption_header = '<?php echo $wpa_option_header ?>';
     
    387387
    388388  <script>
    389     $(":range").rangeinput();
    390       $(document).ready(function(){ 
     389    $(":range").rangeinput(); 
     390        $(document).bind('ready',function(){
    391391      // $('#preview-action a').attr('style', 'display:none');
    392392       $('#wpseo_meta').attr('style', 'display:none'); //hide seo     
     
    508508           var $ = jQuery;
    509509           
    510            $(document).ready(function(){
     510            $(document).bind('ready',function(){
    511511           
    512512             if( document.cookie.indexOf('wpa_$wpa_post_id') == -1 ){           
     
    530530
    531531           var $ = jQuery;
    532            $(document).ready(function(){
     532           $(document).bind('ready',function(){
    533533           
    534534           if( document.cookie.indexOf('wpa_$wpa_post_id') == -1 ){ 
     
    554554           var $ = jQuery;
    555555           //alert('cool3');
    556            $(document).ready(function(){
     556            $(document).bind('ready',function(){
    557557           if( document.cookie.indexOf('wpa_$wpa_post_id') == -1 ){       
    558558                setTimeout(wpann_pop_announcement, $wpa_delay * 1000 );
  • wp-announce/tags/2.0.4/wp-announce.php

    r924393 r924806  
    55Description: Clean and neat announcement popup plugin for users to view when they visit your site. You can set who sees the announcement and when to display it.
    66Author: Sprint Experts Team
    7 Version: 2.0.2
     7Version: 2.0.4
    88Author URI: https://www.sprintexperts.com
    99License: GPLv2 or later
  • wp-announce/trunk/readme.txt

    r924393 r924806  
    55Requires at least: 3.0.1
    66Tested up to: 3.9.1
    7 Stable tag: 2.0.3
     7Stable tag: 2.0.4
    88
    99Clean  announcement plugin  that reveals a neat popup when users visit your site. You can set who sees the announcement and when to display it . You can customise the look and feel among other things.
     
    4040* intermittent bug fix - javascript conflict
    4141* Persistent cookie fix
     42= 2.0.4 =
     43* conflict fix with custom themes
  • wp-announce/trunk/src/wp-announce.php

    r924393 r924806  
    33if ( !function_exists( 'add_action' ) )
    44   {
    5         header( 'HTTP/0.9 403 Forbidden' );
    6         header( 'HTTP/1.0 403 Forbidden' );
    7         header( 'HTTP/1.1 403 Forbidden' );
    8         header( 'Status: 403 Forbidden' );
    9         header( 'Connection: Close' );
    10         exit();
    11     }
     5    header( 'HTTP/0.9 403 Forbidden' );
     6    header( 'HTTP/1.0 403 Forbidden' );
     7    header( 'HTTP/1.1 403 Forbidden' );
     8    header( 'Status: 403 Forbidden' );
     9    header( 'Connection: Close' );
     10    exit();
     11  }
    1212
    1313define( 'PLUGIN_NAME', 'WP Announce');
     
    8989function wpa_admin(){
    9090      //add_submenu_page('edit.php?post_type=announce', 'Help and FAQ', 'Help and FAQ', 'edit_posts', basename(__FILE__), 'wpa_option_page');
    91        //add_options_page('WP Announce Options', 'WP Announce','announce', __FILE__, 'wpa_options_page');
    92     }   
     91     //add_options_page('WP Announce Options', 'WP Announce','announce', __FILE__, 'wpa_options_page');
     92    } 
    9393//add_action('admin_menu', 'wpa_admin', 10, 1);
    9494
     
    164164 <script>
    165165    $ = jQuery; 
    166     $(document).ready(function(){
     166      $(document).bind('ready',function(){
    167167      var hh = $('#postimagediv .inside ').html();
    168168      var addMsg = 'Choosing a featured image will create a background for your announcement';
     
    192192
    193193    var $ = jQuery;
    194     $(document).ready(function(){     
     194    $(document).bind('ready',function(){     
    195195
    196196    });
     
    238238   <script>
    239239    $ = jQuery; 
    240     $(document).ready(function(){
     240      $(document).bind('ready',function(){
    241241       $('#wpa_default_style').click( function () {
    242242        var defaultOption_header = '<?php echo $wpa_option_header ?>';
     
    387387
    388388  <script>
    389     $(":range").rangeinput();
    390       $(document).ready(function(){ 
     389    $(":range").rangeinput(); 
     390        $(document).bind('ready',function(){
    391391      // $('#preview-action a').attr('style', 'display:none');
    392392       $('#wpseo_meta').attr('style', 'display:none'); //hide seo     
     
    508508           var $ = jQuery;
    509509           
    510            $(document).ready(function(){
     510            $(document).bind('ready',function(){
    511511           
    512512             if( document.cookie.indexOf('wpa_$wpa_post_id') == -1 ){           
     
    530530
    531531           var $ = jQuery;
    532            $(document).ready(function(){
     532           $(document).bind('ready',function(){
    533533           
    534534           if( document.cookie.indexOf('wpa_$wpa_post_id') == -1 ){ 
     
    554554           var $ = jQuery;
    555555           //alert('cool3');
    556            $(document).ready(function(){
     556            $(document).bind('ready',function(){
    557557           if( document.cookie.indexOf('wpa_$wpa_post_id') == -1 ){       
    558558                setTimeout(wpann_pop_announcement, $wpa_delay * 1000 );
  • wp-announce/trunk/wp-announce.php

    r924393 r924806  
    55Description: Clean and neat announcement popup plugin for users to view when they visit your site. You can set who sees the announcement and when to display it.
    66Author: Sprint Experts Team
    7 Version: 2.0.2
     7Version: 2.0.4
    88Author URI: https://www.sprintexperts.com
    99License: GPLv2 or later
Note: See TracChangeset for help on using the changeset viewer.