Changeset 936 for bb-ratings

Show
Ignore:
Timestamp:
03/11/08 08:50:24 (9 months ago)
Author:
mdawaffe
Message:

make sure add-load-event is loaded. bump version

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • bb-ratings/tags/0.8.5/bb-ratings.php

    r920 r936  
    66Author: Michael D Adams 
    77Author URI: http://blogwaffe.com/ 
    8 Version: 0.8.4 
     8Version: 0.8.5 
    99*/ 
    1010 
    1111/* Template Functions */ 
    1212 
    13 function bb_get_rating_plugin_version() { return '0.8.3'; } 
     13function bb_get_rating_plugin_version() { return '0.8.5'; } 
    1414 
    1515function bb_rating( $topic_id = 0 ) { 
     
    101101        global $topic, $bb_current_user; 
    102102 
    103         bb_enqueue_script( 'bb_rating', bb_path_to_url( dirname(__FILE__) . '/bb-ratings.js' ), array('wp-ajax'), bb_get_rating_plugin_version() ); 
     103        bb_enqueue_script( 'bb_rating', bb_path_to_url( dirname(__FILE__) . '/bb-ratings.js' ), array('wp-ajax', 'add-load-event'), bb_get_rating_plugin_version() ); 
    104104 
    105105        if ( !isset($_GET['rate']) ) 
  • bb-ratings/tags/0.8.5/readme.txt

    r920 r936  
    44Requires at least: 0.8.3 
    55Tested up to: 0.8.3.1 
    6 Stable Tag: 0.8.4 
     6Stable Tag: 0.8.5 
    77 
    88Allows users to rate topics on a simple 1-5 star scale. 
  • bb-ratings/trunk/bb-ratings.php

    r920 r936  
    66Author: Michael D Adams 
    77Author URI: http://blogwaffe.com/ 
    8 Version: 0.8.4 
     8Version: 0.8.5 
    99*/ 
    1010 
    1111/* Template Functions */ 
    1212 
    13 function bb_get_rating_plugin_version() { return '0.8.3'; } 
     13function bb_get_rating_plugin_version() { return '0.8.5'; } 
    1414 
    1515function bb_rating( $topic_id = 0 ) { 
     
    101101        global $topic, $bb_current_user; 
    102102 
    103         bb_enqueue_script( 'bb_rating', bb_path_to_url( dirname(__FILE__) . '/bb-ratings.js' ), array('wp-ajax'), bb_get_rating_plugin_version() ); 
     103        bb_enqueue_script( 'bb_rating', bb_path_to_url( dirname(__FILE__) . '/bb-ratings.js' ), array('wp-ajax', 'add-load-event'), bb_get_rating_plugin_version() ); 
    104104 
    105105        if ( !isset($_GET['rate']) ) 
  • bb-ratings/trunk/readme.txt

    r920 r936  
    44Requires at least: 0.8.3 
    55Tested up to: 0.8.3.1 
    6 Stable Tag: 0.8.4 
     6Stable Tag: 0.8.5 
    77 
    88Allows users to rate topics on a simple 1-5 star scale.