Changeset 1149615 for angularjs-for-wp/trunk/plugin.php
- Timestamp:
- 04/29/2015 11:05:50 PM (11 years ago)
- File:
-
- 1 edited
-
angularjs-for-wp/trunk/plugin.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
angularjs-for-wp/trunk/plugin.php
r1149594 r1149615 4 4 * Plugin URI: http://www.roysivan.com/angularjs-for-wordpress 5 5 * Description: This plugin will allow you to easily load WordPress content client-side using AngularJS. JSON REST API required. 6 * Version: 1.2. 16 * Version: 1.2.2 7 7 * Author: Roy Sivan 8 8 * Author URI: http://www.roysivan.com … … 14 14 require_once('includes/shortcodes.php'); 15 15 16 define('WordPressAngularJS', '1.2 ');16 define('WordPressAngularJS', '1.2.2'); 17 17 18 18 class WordPressAngularJS { … … 27 27 wp_enqueue_script('angular-core', plugin_dir_url( __FILE__ ).'js/angular.min.js', array('jquery'), null, false); 28 28 wp_enqueue_script('angular-sanitize', plugin_dir_url( __FILE__ ).'js/angular-sanitize.min.js', array('jquery'), null, false); 29 wp_enqueue_script('angular-app', plugin_dir_url( __FILE__ ).'js/angular-app.js', array('jquery'), null, false); 29 wp_enqueue_script('html-janitor', plugin_dir_url( __FILE__ ).'js/html-janitor.js', array('jquery'), null, false); 30 31 wp_enqueue_script('angular-app', plugin_dir_url( __FILE__ ).'js/angular-app.js', array('html-janitor'), null, false); 30 32 31 33 // Angular Factories
Note: See TracChangeset
for help on using the changeset viewer.