Results 5 issues of Art Pai

Seems that if I do a GET after POST, opts.body of GET request will send body that sent by POST I had to modify fetchival to fix it. ``` if...

I need a ability to inject a default error handler, like angular's $http can do. So I modify a bit to let fetchival can accept errorhandler. My use case is...

``` Validator.register('fail_array', function(value, requirement, attribute) { return false; }, ':attribute Failed'); var fields = {attr: []} var rules = {attr: 'fail_array'} new Validator(fields, rules); ``` This validation will won't fail....

bug
docs
next

I know there is tool to lint json, but still would be helpful to know whats wrong at first place.

if ( ! defined('BASEPATH')) exit('No direct script access allowed'); if ( ! function_exists('render')) { function render($data = array()) { $CI =& get_instance(); ``` $CI->template->set($data); $CI->template->render(); } ``` } // ------------------------------------------------------------------------...