Angular UI Select2 dumping error in console while using in chrome App

I'm trying to use the following select2 example in chrome App using AngularJS and Angular-UI. It's working fine but unfortunately I'm getting the following error in chrome console every time clicking on the drop boxe.

"Refused to execute inline event handler because it violates the following Content Security Policy directive: "default-src 'self' chrome-extension-resource:". Note that 'script-src' was not explicitly set, so 'default-src' is used as a fallback."

Any suggestion how can i fix this issue?

Thanks

*This code working fine without any problem in browser, but not in chrome App
Code:

Controller

 var app = angular.module("app", ['ui']);

function Ctrl($scope) {


    $scope.contacts = [
        {
        "id": 1,
        "name": "Lucky"},
       {
        "id": 2,
        "name": "Lance"},
    {
        "id": 3,
        "name": "Troels"},
    {
        "id": 4,
        "name": "Phe"}
    ];

}

View

<select class="input-medium" ui-select2 ng-model="form.cont" type="text" value="" >
    <option ng-repeat="contac in all" value="{{contac.id}}">{{contac.name}}</option>               
</select>


Solved!
Thanks to @AlanRodriguesSoares 's tips. I've downloaded another version of select2.js from gitub ( [link] https://raw.github.com/timoxley/select2/bug/onclick/select2.js ) which this issue is fixed in it.

Add the directive ng-csp to your element:

<html ng-app ng-csp>
...

With this directive, AngularJS won't use any of the CSP forbidden dynamic JS code, like eval and new Function.

If you look on select2.js, there are two "onclick" events set inline, this is a known bug, try removing it. select.js lines 1524 and 2232.