Skip to content

Commit

Permalink
Fixed ng-modal name bug resulting in app loading issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kkartunov committed Sep 24, 2014
1 parent 019130c commit bcaa150
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/docs/
/node_modules/
/vendor/
/src/OnDemandSuiteWP/Assets/less/dist/
/src/OnDemandSuiteWP/Assets/js/dist/

.brackets.json
composer.lock
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# HP IDOL OnDemand Suite For WP

[![Build Status](https://travis-ci.org/mtserve/IDOL-OnDemand-Suite-WP.svg)](https://travis-ci.org/mtserve/IDOL-OnDemand-Suite-WP)
[![Build Status](https://travis-ci.org/mtserve/IDOL-OnDemand-Suite-WP.svg)](https://travis-ci.org/mtserve/IDOL-OnDemand-Suite-WP) [![Latest Stable Version](https://poser.pugx.org/mtserve/hp-idol-on-demand-suite-for-wp/v/stable.svg)](https://packagist.org/packages/mtserve/hp-idol-on-demand-suite-for-wp) [![License](https://poser.pugx.org/mtserve/hp-idol-on-demand-suite-for-wp/license.svg)](https://packagist.org/packages/mtserve/hp-idol-on-demand-suite-for-wp) [![Total Downloads](https://poser.pugx.org/mtserve/hp-idol-on-demand-suite-for-wp/downloads.svg)](https://packagist.org/packages/mtserve/hp-idol-on-demand-suite-for-wp)

**WP plugin** bundling a collection of tools which ease the workflow when working with the **HP IDOL OnDemand API**.

Expand Down
1 change: 1 addition & 0 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"Kiril Kartunov <kiri4a@gmail.com>"
],
"description": "HP IDOL OnDemand Suite For WP is a plugin for working with the IDOL OnDemand API",
"homepage": "https://github.com/mtserve/IDOL-OnDemand-Suite-WP",
"keywords": [
"HP",
"IDOL",
Expand Down
12 changes: 10 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
{
"name": "kiril/hp_idol_on_demand_suite_for_wp",
"name": "mtserve/hp-idol-on-demand-suite-for-wp",
"description": "HP IDOL OnDemand Suite For WP is a plugin for working with the IDOL OnDemand API",
"version": "0.1.0",
"type": "wordpress-plugin",
"license": "GPLv2",
"homepage": "https://github.com/mtserve/IDOL-OnDemand-Suite-WP",
"authors": [
{
"name": "Kiril Kartunov",
"email": "kiri4a@gmail.com"
}
],
"require": {},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"sami/sami": "2.0.*@dev",
"phpspec/phpspec": "~2.0"
Expand All @@ -18,5 +22,9 @@
"psr-0": {
"OnDemandSuiteWP": ["src/"]
}
},
"keywords": ["wordpress", "API", "HP IDOL OnDemand"],
"support": {
"issues": "https://github.com/mtserve/IDOL-OnDemand-Suite-WP/issues"
}
}
Binary file modified dist/HP_IDOL_OnDemand_Suite_For_WP.zip
Binary file not shown.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "HP_IDOL_OnDemand_Suite_For_WP",
"version": "0.1.0",
"description": "HP IDOL OnDemand Suite For WP is a plugin for working with the IDOL OnDemand API",
"homepage": "https://github.com/mtserve/IDOL-OnDemand-Suite-WP",
"author": "Kiril Kartunov",
"license": "GPLv2",
"devDependencies": {
Expand Down
1 change: 0 additions & 1 deletion src/OnDemandSuiteWP/Assets/js/dist/ContentEditWidget.js

This file was deleted.

1 change: 0 additions & 1 deletion src/OnDemandSuiteWP/Assets/js/dist/DashboardWidget.js

This file was deleted.

1 change: 0 additions & 1 deletion src/OnDemandSuiteWP/Assets/less/dist/ContentEditWidget.css

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion src/OnDemandSuiteWP/Assets/less/dist/DashboardWidget.css

This file was deleted.

2 changes: 1 addition & 1 deletion src/OnDemandSuiteWP/Services/ContentEditWidget.php
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ private function admin_init()
// Load ngModal
wp_register_script(
'ngModal',
plugin_dir_url(OnDemandSuiteWP_BASE_FILE).'vendor/ngModal/dist/ng-modal.js',
plugin_dir_url(OnDemandSuiteWP_BASE_FILE).'vendor/ngModal/dist/ng-modal.min.js',
array('angular')
);
wp_enqueue_script('ngModal');
Expand Down
2 changes: 1 addition & 1 deletion src/OnDemandSuiteWP/Services/DashboardWidget.php
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ private function prepareAssets()
// Load ngModal
wp_register_script(
'ngModal',
plugin_dir_url(OnDemandSuiteWP_BASE_FILE).'vendor/ngModal/dist/ng-modal.js',
plugin_dir_url(OnDemandSuiteWP_BASE_FILE).'vendor/ngModal/dist/ng-modal.min.js',
array('angular')
);
wp_enqueue_script('ngModal');
Expand Down

0 comments on commit bcaa150

Please sign in to comment.